diff --git a/.gitattributes b/.gitattributes index be441d2..45c4d17 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,5 +6,5 @@ *.mp4 binary # Preserve licensed text and prompt-significant whitespace verbatim. -acidslide-v1/benchmark/fonts/licenses/** -whitespace -acidslide-v1/benchmark/prompts/variants/** -whitespace +gloss-v1/benchmark/fonts/licenses/** -whitespace +gloss-v1/benchmark/prompts/variants/** -whitespace diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d471c2..5ca735e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: [main] - tags: ["acidslide-v*"] + tags: ["gloss-v*"] pull_request: permissions: @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-22.04 defaults: run: - working-directory: acidslide-v1/grader + working-directory: gloss-v1/grader steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v6 @@ -24,20 +24,20 @@ jobs: - run: uv sync --extra dev --locked - run: uv run ruff check . - run: uv run ruff format --check . - - run: uv run mypy acidslide tests - - run: uv run pytest --cov=acidslide --cov-report=term-missing --cov-fail-under=85 + - run: uv run mypy gloss tests + - run: uv run pytest --cov=gloss --cov-report=term-missing --cov-fail-under=85 - run: uv build - run: uv run pip-audit - name: Verify self-contained wheel data run: | - uv run python -m zipfile -l dist/acidslide-1.0.0a1-py3-none-any.whl | grep 'acidslide/data/benchmark/checklist/deck.yaml' - uv run python -m zipfile -l dist/acidslide-1.0.0a1-py3-none-any.whl | grep 'acidslide/data/schemas/ecma-376/xsd-transitional/pml.xsd' + uv run python -m zipfile -l dist/gloss-1.0.0a1-py3-none-any.whl | grep 'gloss/data/benchmark/checklist/deck.yaml' + uv run python -m zipfile -l dist/gloss-1.0.0a1-py3-none-any.whl | grep 'gloss/data/schemas/ecma-376/xsd-transitional/pml.xsd' corpus: runs-on: ubuntu-22.04 defaults: run: - working-directory: acidslide-v1/grader + working-directory: gloss-v1/grader steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v6 @@ -47,9 +47,9 @@ jobs: - run: uv sync --extra dev --locked - run: uv run python ../benchmark/validate_corpus.py - name: Require the complete frozen release on version tags - if: startsWith(github.ref, 'refs/tags/acidslide-v') + if: startsWith(github.ref, 'refs/tags/gloss-v') run: | - test "$GITHUB_REF_NAME" = "acidslide-v1.0.0" + test "$GITHUB_REF_NAME" = "gloss-v1.0.0" uv run python ../benchmark/validate_corpus.py --release launch: @@ -69,12 +69,12 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - run: docker build --platform linux/amd64 --tag acidslide-ci acidslide-v1 + - run: docker build --platform linux/amd64 --tag gloss-ci gloss-v1 - name: Verify frozen runtime and font inventory run: | - docker run --rm --platform linux/amd64 --network none acidslide-ci --version + docker run --rm --platform linux/amd64 --network none gloss-ci --version docker run --rm --platform linux/amd64 --network none \ - --entrypoint /bin/sh acidslide-ci -ec ' + --entrypoint /bin/sh gloss-ci -ec ' test "$(date -u +%Y-%m-%dT%H:%M:%SZ)" = "2025-01-01T00:00:00Z" libreoffice --version | grep -F "LibreOffice 7.3.7.2" pdftoppm -v 2>&1 | grep -F "22.02.0" @@ -83,8 +83,8 @@ jobs: - name: Reference deck passes quarantine and ECMA-376 validation run: | output=$(docker run --rm --platform linux/amd64 --network none \ - --volume "$PWD/acidslide-v1/benchmark/deck/gold/acidslide-v1-gold.pptx:/input.pptx:ro" \ - acidslide-ci validate /input.pptx 2>&1) + --volume "$PWD/gloss-v1/benchmark/deck/gold/gloss-v1-gold.pptx:/input.pptx:ro" \ + gloss-ci validate /input.pptx 2>&1) grep -F "Quarantine passed" <<<"$output" grep -F "ECMA-376 schema: valid" <<<"$output" @@ -92,7 +92,7 @@ jobs: runs-on: ubuntu-22.04 defaults: run: - working-directory: acidslide-v1/service + working-directory: gloss-v1/service steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v6 @@ -102,8 +102,8 @@ jobs: - run: uv sync --extra dev --locked - run: uv run ruff check . - run: uv run ruff format --check . - - run: uv run mypy acidslide_service tests - - run: uv run pytest --cov=acidslide_service --cov-report=term-missing --cov-fail-under=85 + - run: uv run mypy gloss_service tests + - run: uv run pytest --cov=gloss_service --cov-report=term-missing --cov-fail-under=85 - run: uv run pip-audit service-images: @@ -113,15 +113,15 @@ jobs: - name: Build canonical grader base run: | docker build --platform linux/amd64 --provenance=false \ - --tag acidslide/grader:1.0.0 acidslide-v1 + --tag gloss/grader:1.0.0 gloss-v1 - name: Build API, worker, and quarantine images run: | docker build --platform linux/amd64 --provenance=false \ - --build-context schemas=acidslide-v1/schemas \ - --target api --tag acidslide/service-api:1.0.0 acidslide-v1/service + --build-context schemas=gloss-v1/schemas \ + --target api --tag gloss/service-api:1.0.0 gloss-v1/service docker build --platform linux/amd64 --provenance=false \ - --build-context schemas=acidslide-v1/schemas \ - --target worker --tag acidslide/service-worker:1.0.0 acidslide-v1/service + --build-context schemas=gloss-v1/schemas \ + --target worker --tag gloss/service-worker:1.0.0 gloss-v1/service docker build --platform linux/amd64 --provenance=false \ - --build-context schemas=acidslide-v1/schemas \ - --target quarantine-job --tag acidslide/quarantine:1.0.0 acidslide-v1/service + --build-context schemas=gloss-v1/schemas \ + --target quarantine-job --tag gloss/quarantine:1.0.0 gloss-v1/service diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3570ecb..3ce6090 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ Start with an [issue](https://github.com/aronchick/gloss/issues/new/choose). Thi 1. Keep public claims traceable to committed evidence. 2. Do not add invented model results, scores, costs, or generation provenance. -3. Keep the public name **Gloss** and the protocol identifier `acidslide-v1` distinct. +3. Keep the public name **Gloss** and the protocol identifier `gloss-v1` distinct. 4. Treat the OpenSpec as Draft until the release validator passes and maintainers freeze it. 5. Add or update tests for grader behavior changes. 6. Never commit private slide decks, credentials, customer data, or proprietary fonts. @@ -28,7 +28,7 @@ Install [uv](https://docs.astral.sh/uv/), Python 3.12, LibreOffice Impress, and ```bash git clone https://github.com/aronchick/gloss.git -cd gloss/acidslide-v1/grader +cd gloss/gloss-v1/grader uv sync --extra dev --locked uv run ../benchmark/validate_corpus.py uv run pytest tests/test_mutation_fixtures.py -q @@ -39,8 +39,8 @@ Run the full grader checks before opening a pull request: ```bash uv run ruff check . uv run ruff format --check . -uv run mypy acidslide tests -uv run pytest --cov=acidslide --cov-fail-under=85 +uv run mypy gloss tests +uv run pytest --cov=gloss --cov-fail-under=85 uv build uv run pip-audit ``` @@ -52,8 +52,8 @@ cd ../service uv sync --extra dev --locked uv run ruff check . uv run ruff format --check . -uv run mypy acidslide_service tests -uv run pytest --cov=acidslide_service --cov-fail-under=85 +uv run mypy gloss_service tests +uv run pytest --cov=gloss_service --cov-fail-under=85 uv run pip-audit ``` @@ -87,7 +87,7 @@ CI must pass. Maintainers may ask for a smaller fixture, clearer provenance, or The static site lives in `site/`. Harness counts come from `site/evidence/preview-v1.json`; comparative bars come from the byte-equivalent -public copy of `acidslide-v1/benchmark/comparative-v1/summary.json`. Verify both +public copy of `gloss-v1/benchmark/comparative-v1/summary.json`. Verify both sources, local assets, copy, and media metadata with: ```bash diff --git a/ACIDSLIDE_OPENSPEC.md b/GLOSS_OPENSPEC.md similarity index 98% rename from ACIDSLIDE_OPENSPEC.md rename to GLOSS_OPENSPEC.md index f1a89ef..00f7f83 100644 --- a/ACIDSLIDE_OPENSPEC.md +++ b/GLOSS_OPENSPEC.md @@ -1,4 +1,4 @@ -# AcidSlide v1 OpenSpec +# Gloss v1 OpenSpec Status: Draft — adversarial review remediation in progress; not freeze-ready Scope: Public benchmark, automated grading suite, and hosted evaluation service for slide generation fidelity @@ -6,7 +6,7 @@ Primary artifact: A fully public, machine-graded PowerPoint benchmark inspired b ## 1. Summary -`AcidSlide` is a benchmark for grading whether a submitted `.pptx` artifact conforms to natural-language prompt requirements while preserving both: +`Gloss` is a benchmark for grading whether a submitted `.pptx` artifact conforms to natural-language prompt requirements while preserving both: - rendered visual fidelity under a fixed reference renderer (LibreOffice Impress headless) - user-visible structural fidelity inside the PowerPoint deck @@ -26,7 +26,7 @@ underspecified. They are authoritative only for assertions explicitly marked The benchmark is intentionally gameable in v1. The goal is not secrecy. The goal is to create a brutal, public, tunable target that forces frontier models to get meaningfully better at producing real slides instead of image-backed fakes. -`AcidSlide` ships in three difficulty tiers: +`Gloss` ships in three difficulty tiers: - **Level 1** (5 slides): basic constructs — placeholders, images, simple tables, master usage - **Level 2** (12 slides): intermediate — multilingual text, charts, grouping, overlap, z-order @@ -34,16 +34,16 @@ The benchmark is intentionally gameable in v1. The goal is not secrecy. The goal Each tier is scored independently. A submission targets a specific tier and is graded only on that tier's slides. The leaderboard tracks per-tier scores. A **full-deck perfect pass** requires submitting for Level 3 and achieving `deck_passed == true` (see §10.1 for the precise definition) — this is the ceiling achievement, not a prerequisite for leaderboard presence. -`AcidSlide` is available in two modes: +`Gloss` is available in two modes: - **Local mode**: download the benchmark package and run the grader locally using Docker (Linux/macOS/Windows). Scores are self-reported and are not official leaderboard results. -- **Hosted mode**: submit via API to the AcidSlide service, which grades in the canonical controlled environment and publishes **grading-verified** scores to the official leaderboard. +- **Hosted mode**: submit via API to the Gloss service, which grades in the canonical controlled environment and publishes **grading-verified** scores to the official leaderboard. Submissions are graded only from the final submitted `.pptx`. No tool traces, reasoning logs, or intermediate artifacts affect the score. ### 1.1 Verification terminology -AcidSlide distinguishes three claims that MUST NOT be collapsed into a single unlabeled +Gloss distinguishes three claims that MUST NOT be collapsed into a single unlabeled "verified" badge: - **Grading-verified**: the uploaded artifact was quarantined, rendered, inspected, and scored by @@ -58,7 +58,7 @@ Throughout this specification, an unqualified "verified score" means **grading-v UI and API MUST label generation claims as attested and MUST NOT imply that v1 verifies model identity, generation method, absence of human intervention, or generation-time network behavior. -AcidSlide v1 verifies **artifact conformance only**. Every public submission, campaign, robustness, +Gloss v1 verifies **artifact conformance only**. Every public submission, campaign, robustness, and leaderboard result MUST carry the exact label `grading-verified artifact score; generation-attested`. The service, API, documentation, and UI MUST NOT state or imply that a named model generated, passed, or independently reproduced the @@ -123,7 +123,7 @@ The intended generation task asks a generator to create an artifact that demonst ### 2.4 External validity disclaimer -AcidSlide v1 is a ceiling test using deliberately hostile torture slides, not a measure of general slide-generation utility. A low artifact score does not prove the attributed generator is useless in production. A high artifact score—especially on a public gold—does not prove the attributed generator can handle novel slide generation. Realistic multi-slide story decks and generation-verified execution are planned for v2. +Gloss v1 is a ceiling test using deliberately hostile torture slides, not a measure of general slide-generation utility. A low artifact score does not prove the attributed generator is useless in production. A high artifact score—especially on a public gold—does not prove the attributed generator can handle novel slide generation. Realistic multi-slide story decks and generation-verified execution are planned for v2. ## 3. Locked v1 Decisions @@ -375,7 +375,7 @@ the complete checklist bundle. The public package ships as a versioned directory with a stable layout. ```text -acidslide-v1/ +gloss-v1/ README.md SPEC.md VERSION @@ -440,7 +440,7 @@ acidslide-v1/ slides.json deck/ gold/ - acidslide-v1-gold.pptx + gloss-v1-gold.pptx exports/ slide-01.png slide-02.png @@ -495,7 +495,7 @@ acidslide-v1/ grader/ README.md pyproject.toml - acidslide/ + gloss/ cli.py runtime/ export/ @@ -669,7 +669,7 @@ The release publishes the algorithm `schemas/grader-source-tree-profile-v1.json` the profile ID/hash and contains: - `schema_version`, `manifest_id`, `source_tree_profile_sha256`, and the fixed root - `acidslide-v1/grader`; + `gloss-v1/grader`; - one entry for every release source, resource, lock, build, and test file under that root, with a root-relative NFC-normalized POSIX path, byte length, exact-byte SHA-256, and executable boolean; - entries sorted by Unicode code-point order of `path`, with duplicate, case-fold-colliding, @@ -686,7 +686,7 @@ actually frozen. The frozen package carries the reconstruction input as `benchmark/grader-source-tree.tar`. It is a tar archive whose regular-file members are rooted at -`acidslide-v1/grader/`; container ordering, timestamps, owners, and compression are not identities. +`gloss-v1/grader/`; container ordering, timestamps, owners, and compression are not identities. The verifier rejects absolute/dot/non-NFC/case-colliding paths, links, special files, duplicate or unmanifested members, missing members, byte-length/hash drift, and execute-bit drift before accepting the signed cohort. A repository checkout may instead supply the exact grader root directory. The @@ -711,7 +711,7 @@ unexpected runtime/font, invalid schema, or digest mismatch makes verification i #### 9.4.3 Signed release-index chain and rollback protection -Every release index belongs to the fixed `acidslide-v1-stable` channel and adds `sequence` (positive +Every release index belongs to the fixed `gloss-v1-stable` channel and adds `sequence` (positive integer), `previous_release_index_sha256` (`null` only for sequence 1), `issued_at`, and `effective_at`. The Ed25519 signature covers these fields with the rest of the RFC 8785 canonical index. `state` is one enum—`active`, `frozen`, or `superseded`—not simultaneous booleans. At most one @@ -794,7 +794,7 @@ Export command (reference): libreoffice --headless --convert-to pdf \ --outdir /work /input/submission.pptx pdftoppm -png -scale-to-x 1920 -scale-to-y 1080 \ - /work/submission.pdf /work/acidslide-render + /work/submission.pdf /work/gloss-render ``` Direct PNG export, an alternate rasterizer, a resize fallback, a second architecture, or any other @@ -844,7 +844,7 @@ Files whose contents bind the OCI digest (`environment-attestation.json`, `scoring-manifest.json`, release indexes, determinism/gold evidence, baselines, and control handoffs) are excluded from the environment-image build context to avoid an OCI-digest self-reference. The worker mounts the exact signed release package read-only and sets -`ACIDSLIDE_BENCHMARK_DIR` to that mount only after its release chain, scoring-manifest hash, grader +`GLOSS_BENCHMARK_DIR` to that mount only after its release chain, scoring-manifest hash, grader source tree, and environment-attestation hash have verified. Rebuilding an image never copies OCI-bearing release metadata into the image it identifies. @@ -1169,7 +1169,7 @@ affected-slide rules for every automatic failure. The release validator rejects pending member across the complete bundle. At release, `benchmark/fixtures/index.json` is a closed -`acidslide-assertion-evidence-index-v1` projection. It binds the RFC 8785 review-projection SHA-256 +`gloss-assertion-evidence-index-v1` projection. It binds the RFC 8785 review-projection SHA-256 of the frozen assertion inventory and contains exactly one entry for every frozen assertion. Each entry repeats that assertion's `assertion_id`, `checklist_item_id`, positive-fixture IDs, single-fault-negative-fixture IDs, and mutation-expectation IDs byte-for-byte and in the same array @@ -1268,7 +1268,7 @@ hashes. The prompt-oracle approval projection is RFC 8785 canonical JSON for exa ```json { - "domain": "AcidSlide prompt requirements oracle review v1", + "domain": "Gloss prompt requirements oracle review v1", "oracle": "" } ``` @@ -1278,7 +1278,7 @@ the existing prompt-oracle schema field. The scored-assertion approval projectio ```json { - "domain": "AcidSlide scored assertion inventory review v1", + "domain": "Gloss scored assertion inventory review v1", "inventory": "" } ``` @@ -2089,14 +2089,14 @@ ranking. A diagnosed contract defect requires restarting the affected prompt/ora ### 25.1 Service overview -The AcidSlide hosted service accepts `.pptx` submissions via API, grades them in a controlled +The Gloss hosted service accepts `.pptx` submissions via API, grades them in a controlled environment, and publishes grading-verified artifact scores to a public leaderboard. Only hosted-mode artifact scores appear on the official leaderboard with the label required by §1.1. Generation provenance remains attested in v1, as defined in §1.1. ### 25.2 Submission API -**Base URL**: `https://api.acidslide.dev/v1` +**Base URL**: `https://api.gloss.dev/v1` All response objects that contain or summarize a score include these immutable constants: @@ -2177,7 +2177,7 @@ Request: "model_revision_key": "uuid (required)", "profile": { "schema_version": "1.0", - "profile_id": "acidslide-generation-profile-v1", + "profile_id": "gloss-generation-profile-v1", "canonicalization": "RFC8785-JCS", "generator": { "provider": "provider name", @@ -2234,7 +2234,7 @@ Response (`201 Created`): "submitter_id": "uuid (derived)", "model_key": "uuid (derived)", "model_revision_key": "uuid", - "benchmark_version": "acidslide-v1.0.0 (derived from cohort)", + "benchmark_version": "gloss-v1.0.0 (derived from cohort)", "scoring_cohort_id": "sha256:...", "tier": 3, "prompt_variant": "canonical", @@ -2467,7 +2467,7 @@ Include `webhook_url` in the POST /submissions request to receive a POST callbac Webhook delivery: - HTTP POST to `webhook_url` with JSON body matching the GET /submissions/{id} response -- Header `X-AcidSlide-Signature`: HMAC-SHA256 hex digest of the raw request body using `webhook_secret` as key +- Header `X-Gloss-Signature`: HMAC-SHA256 hex digest of the raw request body using `webhook_secret` as key - Retry on 5xx: 3 attempts with exponential backoff (1s, 4s, 16s) - Timeout: 10 seconds per attempt - **SSRF prevention**: `webhook_url` must use `https://` scheme only. URLs resolving to private IP ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, 127.0.0.0/8, ::1), link-local addresses, or non-routable addresses are rejected at registration time. DNS resolution is re-validated at delivery time to prevent DNS rebinding. **HTTP redirects are not followed** — if the webhook endpoint returns 3xx, the delivery is treated as failed. @@ -2485,7 +2485,7 @@ Response (summary view): ```json { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grader_version": "1.0.0", "verification_scope": "artifact_conformance", "verification_label": "grading-verified artifact score; generation-attested", @@ -2809,7 +2809,7 @@ documented rollback; a scorer/environment change cannot roll back across cohort ### 26.1 Version scheme -`acidslide-vMAJOR.MINOR.PATCH` +`gloss-vMAJOR.MINOR.PATCH` - **MAJOR**: new slide set, official prompt variants, tiers, assertion/checklist/scoring changes, or any breaking change. Scores across major versions are not comparable. @@ -2886,7 +2886,7 @@ When a new major version is released: - **Proposing new slides or checklist items**: public GitHub issue + PR against the benchmark package - **Reporting false positives**: public GitHub issue with reproduction steps - **Challenging checklist items**: public discussion thread; resolution requires maintainer review -- **Dispute resolution for hosted-mode scores**: email to disputes@acidslide.dev; reviewed within 10 business days; resolution published publicly (anonymized) +- **Dispute resolution for hosted-mode scores**: email to disputes@gloss.dev; reviewed within 10 business days; resolution published publicly (anonymized) - **New version ratification**: major versions require public RFC period (30 days minimum) ## 27. Reporting Format @@ -2899,7 +2899,7 @@ kind/mode/state conditionals described in §§1.1, 11.1.1, and 25.6. ```json { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "hosted", "run_kind": "submission", "grader_version": "1.0.0", @@ -3097,7 +3097,7 @@ Deliverables: versioned benchmark release, grader CLI, benchmark README, submiss ## 29. Acceptance Criteria for v1 -`AcidSlide v1` is complete when all of the following are true: +`Gloss v1` is complete when all of the following are true: Schemas, empty directories, candidate metadata, and pending review records are not evidence that a gate passed. While this document is Draft, the release validator MUST fail if concrete signed @@ -3106,7 +3106,7 @@ or reviewer approvals are absent. Those instances are created only from real fro observed runs; placeholders or synthetic approvals are forbidden. - benchmark package is fully public and self-contained -- the canonical document header is exactly `Status: Frozen — acidslide-v1.0.0` and the public README +- the canonical document header is exactly `Status: Frozen — gloss-v1.0.0` and the public README no longer carries a pre-release warning; release-tag CI fails closed on either mismatch - OpenSpec, OpenAPI, scoring manifest, prompt-requirements oracle, MCE profile, and all normative JSON Schemas are frozen and content-addressed - the release index and scoring manifest pass JCS/hash/cohort recomputation and an authorized Ed25519 diff --git a/ACIDSLIDE_REMEDIATION_PLAN.md b/GLOSS_REMEDIATION_PLAN.md similarity index 89% rename from ACIDSLIDE_REMEDIATION_PLAN.md rename to GLOSS_REMEDIATION_PLAN.md index f2bcf6e..a0b8ba2 100644 --- a/ACIDSLIDE_REMEDIATION_PLAN.md +++ b/GLOSS_REMEDIATION_PLAN.md @@ -1,10 +1,10 @@ -# AcidSlide v1 — Detailed Remediation Plan +# Gloss v1 — Detailed Remediation Plan > **Historical and superseded.** This plan describes the retired April draft deck. The draft is > recoverable from git history at `7f66d66`; it is intentionally absent from the release tree. The -> only current gold is `acidslide-v1/benchmark/deck/gold/acidslide-v1-gold.pptx`. +> only current gold is `gloss-v1/benchmark/deck/gold/gloss-v1-gold.pptx`. -Goal: take `acidslide-v1/AcidSlide_v1.pptx` (currently auto-failing) and produce a fully conformant AcidSlide v1 gold deck + benchmark package per `ACIDSLIDE_OPENSPEC.md`. +Goal: take `gloss-v1/Gloss_v1.pptx` (currently auto-failing) and produce a fully conformant Gloss v1 gold deck + benchmark package per `GLOSS_OPENSPEC.md`. > **Key insight**: the spec treats the `.pptx` as only ~5% of the package — most of the work is the *surrounding* artifacts (prompts, checklist YAML, manifests, fixtures, baselines). Fixing the deck without fixing the package still leaves you ungradeable. > @@ -16,7 +16,7 @@ This plan is ordered so each phase unblocks the next. Do not skip ahead — seve ## Current state (baseline) -From the conformance audit of `AcidSlide_v1.pptx`: +From the conformance audit of `Gloss_v1.pptx`: **Structural positives (~60–70% of §14 matrix present)** - 20 slides, 16:9, valid OOXML @@ -29,7 +29,7 @@ From the conformance audit of `AcidSlide_v1.pptx`: 2. **Authored in PowerPoint, not LibreOffice Impress** — `docProps/app.xml` = "Microsoft Macintosh PowerPoint", revision 311. Violates §13.1. 3. **Notes slide present** (`ppt/notesSlides/notesSlide1.xml`) — §2.3/§13.3 forbid notes in v1. 4. **Placeholder discipline thin** — only 1 `` per slide (title); body content is freestanding text boxes, violating §5.2. -5. **Package is orphaned** — no `benchmark/deck/gold/acidslide-v1-gold.pptx`, `benchmark/checklist/slides/` is empty, no `prompts/`, `assets/manifest.json`, `fonts/manifest.json`, `fixtures/`, or `baselines/`. The grader literally can't run against it. +5. **Package is orphaned** — no `benchmark/deck/gold/gloss-v1-gold.pptx`, `benchmark/checklist/slides/` is empty, no `prompts/`, `assets/manifest.json`, `fonts/manifest.json`, `fixtures/`, or `baselines/`. The grader literally can't run against it. **Smaller gaps** - 5 slides (7, 8, 9, 11, 20) still titled literal "PowerPoint Presentation" @@ -41,14 +41,14 @@ From the conformance audit of `AcidSlide_v1.pptx`: Goal: a deterministic, bit-reproducible authoring + grading environment. §9.4, §9.7. -1. **Build the canonical Docker image** from `acidslide-v1/Dockerfile` (verify it matches §9.7 exactly: `ubuntu:22.04`, `libreoffice-impress`, `libreoffice-core`, `fonts-liberation`, `fonts-noto`, `fonts-noto-cjk`, `fonts-crosextra-carlito`, `fonts-crosextra-caladea`, and *nothing else font-wise*). +1. **Build the canonical Docker image** from `gloss-v1/Dockerfile` (verify it matches §9.7 exactly: `ubuntu:22.04`, `libreoffice-impress`, `libreoffice-core`, `fonts-liberation`, `fonts-noto`, `fonts-noto-cjk`, `fonts-crosextra-carlito`, `fonts-crosextra-caladea`, and *nothing else font-wise*). ```bash - docker build -t acidslide-v1-env acidslide-v1/ + docker build -t gloss-v1-env gloss-v1/ ``` -2. **Pin the LibreOffice build string**. Inside the container: `libreoffice --version` → record exact build (e.g., `LibreOffice 7.6.4.1 40(Build:1)`) into `acidslide-v1/environment/libreoffice-version.md`. +2. **Pin the LibreOffice build string**. Inside the container: `libreoffice --version` → record exact build (e.g., `LibreOffice 7.6.4.1 40(Build:1)`) into `gloss-v1/environment/libreoffice-version.md`. 3. **Pin the Docker image digest**: ```bash - docker inspect --format='{{index .RepoDigests 0}}' acidslide-v1-env + docker inspect --format='{{index .RepoDigests 0}}' gloss-v1-env ``` Record in `environment/docker-image.md`. 4. **Set locale + timezone** in any authoring/grading shell: `LANG=en_US.UTF-8`, `TZ=UTC`. Reference datetime for fields is `2025-01-01T00:00:00Z` (§9.4). @@ -138,7 +138,7 @@ Before you author the deck, the allowed assets and fonts must be pinned. ## Phase 3 — Rebuild the gold deck in LibreOffice Impress (§13.1 step 3) -> **Do not re-save `AcidSlide_v1.pptx`. Do not edit it in LibreOffice and call it fixed.** Open-save round-trips in LO on a PowerPoint-authored file leave residue (notes parts, Aptos font references in theme, PowerPoint-specific extension lists, `app.xml` application name) that the grader will catch. Start a **new** Impress document. +> **Do not re-save `Gloss_v1.pptx`. Do not edit it in LibreOffice and call it fixed.** Open-save round-trips in LO on a PowerPoint-authored file leave residue (notes parts, Aptos font references in theme, PowerPoint-specific extension lists, `app.xml` application name) that the grader will catch. Start a **new** Impress document. Authoring rules (derived from §3, §4.3, §5.1, §5.2, §13.3, §14, §20, §21): @@ -148,7 +148,7 @@ Authoring rules (derived from §3, §4.3, §5.1, §5.2, §13.3, §14, §20, §21 - `File → Properties`: set title, author, subject. **Remove any trailing "PowerPoint Presentation" default titles.** ### 3.2 Master and layouts (§20) -- Edit the **Slide Master** (`View → Master Slide`). Put everything that repeats deck-wide into the master: brand marks, footer, page-number field, base title placeholder, base body placeholder. If the current deck's "ACIDSLIDE" and slide numbers appear as per-slide text boxes, they will trigger the §4.3 auto-fail ("implementing required master/layout content directly on slides"). They MUST live on the master. +- Edit the **Slide Master** (`View → Master Slide`). Put everything that repeats deck-wide into the master: brand marks, footer, page-number field, base title placeholder, base body placeholder. If the current deck's "GLOSS" and slide numbers appear as per-slide text boxes, they will trigger the §4.3 auto-fail ("implementing required master/layout content directly on slides"). They MUST live on the master. - Create **4 layouts** (title, content, two-column, blank-as-needed). Slide 5's whole purpose is to test that repeated elements inherit from master — verify by inserting a new slide with that layout and confirming the footer/brand appears without being pasted. - Every slide that has a title must use the **title placeholder** (not a freestanding text box). Same for body content on slides where §14 calls for a "body placeholder" (slides 1, 2, 12, 19). §5.2 is explicit: a required placeholder replaced by a freestanding text box is *not* semantically equivalent — it fails. @@ -184,11 +184,11 @@ Before saving, check: zero SmartArt, zero video, zero audio, zero comments, **ze ## Phase 4 — Post-authoring scrub -After saving as `benchmark/deck/gold/acidslide-v1-gold.pptx`, do the forensic cleanup the current deck is missing: +After saving as `benchmark/deck/gold/gloss-v1-gold.pptx`, do the forensic cleanup the current deck is missing: 1. **Unzip and inspect**: ```bash - mkdir -p /tmp/gold && unzip -o benchmark/deck/gold/acidslide-v1-gold.pptx -d /tmp/gold + mkdir -p /tmp/gold && unzip -o benchmark/deck/gold/gloss-v1-gold.pptx -d /tmp/gold ``` 2. **Font audit**: @@ -201,7 +201,7 @@ After saving as `benchmark/deck/gold/acidslide-v1-gold.pptx`, do the forensic cl 4. **Notes purge** (if any leaked in): ```bash - zip -d benchmark/deck/gold/acidslide-v1-gold.pptx \ + zip -d benchmark/deck/gold/gloss-v1-gold.pptx \ 'ppt/notesSlides/*' 'ppt/notesMasters/*' \ 'ppt/_rels/notesSlides*' 'ppt/_rels/notesMasters*' ``` @@ -231,9 +231,9 @@ After saving as `benchmark/deck/gold/acidslide-v1-gold.pptx`, do the forensic cl Inside the pinned Docker container, not on your host: ```bash -docker run --rm -v "$PWD/benchmark:/bench" acidslide-v1-env \ +docker run --rm -v "$PWD/benchmark:/bench" gloss-v1-env \ libreoffice --headless --convert-to pdf \ - --outdir /bench/deck/exports /bench/deck/gold/acidslide-v1-gold.pptx + --outdir /bench/deck/exports /bench/deck/gold/gloss-v1-gold.pptx # split PDF to 1920×1080 PNGs per §9.5 ``` @@ -288,9 +288,9 @@ Target: 255–390 total scored items (20 × ~14 + ~22 deck-level). For every slide, generate the expected scene graph by running the grader's extractor on the gold deck: ```bash -acidslide extract --deck benchmark/deck/gold/acidslide-v1-gold.pptx \ +gloss extract --deck benchmark/deck/gold/gloss-v1-gold.pptx \ --out benchmark/fixtures/expected-scenegraphs/ -acidslide extract --deck benchmark/deck/gold/acidslide-v1-gold.pptx \ +gloss extract --deck benchmark/deck/gold/gloss-v1-gold.pptx \ --deck-level --out benchmark/fixtures/expected-deck.json ``` @@ -331,7 +331,7 @@ Before declaring the gold deck done, all of these must be true. Treat as a liter --- -## About the existing `AcidSlide_v1.pptx` +## About the existing `Gloss_v1.pptx` Keep it as a *drafting reference* — it has the right slide matrix shape and is useful to mine for layout ideas. But **do not** try to convert it in place. The authoring tool, notes slide, font table, title defaults, and placeholder usage are baked in at serialization time, and a resave will not clean them. Treat it as v0.5 scaffolding; rebuild in Impress per Phase 3. diff --git a/LICENSE b/LICENSE index 07072ba..49514df 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2026 AcidSlide contributors + Copyright 2026 Gloss contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 88e7fad..d882b3f 100644 --- a/README.md +++ b/README.md @@ -1,98 +1,157 @@ # Gloss -**Gloss — Generative Layout & OOXML Scoring System** is a public, machine-graded benchmark for PowerPoint artifact conformance against published -prompt, reference-image, and asset requirements. It evaluates native ECMA-376 PresentationML -structure and rendered output in one pinned environment; v1 does not verify which model generated an -artifact. +**Gloss — Generative Layout & OOXML Scoring System** is an open tool for testing +whether a generated PowerPoint is a real, editable artifact—not merely a convincing +screenshot. -**[gloss.tools](https://gloss.tools)** · [Issues](https://github.com/aronchick/gloss/issues) · [Pull requests](https://github.com/aronchick/gloss/pulls) · [Contributing](CONTRIBUTING.md) +Gloss grades both sides of a deck: -> **A screenshot is not a PowerPoint.** Gloss measures whether generated decks look right and are built right. +- **Looks right:** rendered pixels, typography, geometry, and visual consistency. +- **Built right:** native shapes, charts, tables, layouts, masters, text semantics, + relationships, and package safety. -> **Pre-release status:** `ACIDSLIDE_OPENSPEC.md` is still Draft and the release gates are incomplete. -> No deployment should be treated as the official leaderboard until a release announcement names the -> frozen scoring cohort. +**[gloss.tools](https://gloss.tools)** · +[Issues](https://github.com/aronchick/gloss/issues) · +[Pull requests](https://github.com/aronchick/gloss/pulls) · +[Contributing](CONTRIBUTING.md) + +> **A screenshot is not a PowerPoint.** The artifact is the product. + +## The ACID idea + +The browser ACID tests made standards failures impossible to hand-wave away: every +browser received the same hostile, public artifact, and everyone could inspect the +result. They targeted open web standards rather than one browser's preferred output. + +Gloss brings that **ACID-test philosophy** to generated presentations: + +- publish the torture cases instead of hiding them; +- grade the final `.pptx`, not a generation trace or a screenshot; +- test both visible output and standards-based OOXML structure; +- make every assertion, fixture, score, and failure reproducible; +- fail closed when required evidence or rendering stages are missing; +- invite the community to add cases and make the grader stricter. + +Here, **ACID refers to the public browser conformance-test tradition, not database +transactions**. + +## Product and suite + +**Gloss** is the tool and public project. It owns the scoring model, evidence +surface, comparative results, hosted verification direction, and collaboration +workflow. + +**Gloss v1 is the first ACID-style PowerPoint conformance suite bundled with +Gloss.** It supplies the current prompt corpus, hostile deck cases, assertions, gold +fixture, mutation tests, and protocol adapter: + +| Name | Role | +| --- | --- | +| **Gloss** | The tool and public project | +| **ACID tests** | The open conformance-testing philosophy | +| **Gloss v1** | One bundled benchmark protocol and corpus | + +> **Technical-preview status:** the bundled +> [`GLOSS_OPENSPEC.md`](GLOSS_OPENSPEC.md) contract is still Draft and its +> official-release gates remain incomplete. Gloss is live for public collaboration, +> but no result should be treated as an official model leaderboard until a release +> announcement names a frozen scoring cohort. ## Technical preview evidence -The current candidate harness contains 280 schema-valid checks across rendered pixels and native package structure. Its generated operator suite passes 280/280 positive controls and detects 280/280 generated single-fault mutations. This proves configured operator behavior only; it is not independent assertion evidence and it is not a model leaderboard. +The current Gloss v1 candidate suite contains 280 schema-valid checks across +rendered pixels and native package structure. Its generated operator suite passes +280/280 positive controls and detects 280/280 generated single-fault mutations. +This proves configured operator behavior only; it is not independent assertion +evidence and it is not a model leaderboard. -Every launch count is recorded in [`site/evidence/preview-v1.json`](site/evidence/preview-v1.json) and checked against the committed mutation reports by: +Every public count is recorded in +[`site/evidence/preview-v1.json`](site/evidence/preview-v1.json) and checked against +the committed mutation reports: ```bash node launch/verify-launch.mjs ``` -## Frozen comparative bundle +## Frozen Gloss comparison -[`acidslide-v1/benchmark/comparative-v1`](acidslide-v1/benchmark/comparative-v1) -contains four repository-owned generation paths, three public seeds per path, +Gloss includes a frozen comparative bundle produced against Gloss v1: +[`gloss-v1/benchmark/comparative-v1`](gloss-v1/benchmark/comparative-v1). +It contains four repository-owned generation paths, three public seeds per path, and 12 editable 20-slide decks. The canonical Linux/amd64 grader completed all 240 slide renders. -The current local artifact scores are 67.68% for the native paths and 62.32% -for the visual paths. These are reproducible workflow baselines, not model -rankings. Every report says `local artifact score; self-reported` and carries no -model attribution. +The current local artifact scores are 67.68% for the native paths and 62.32% for +the visual paths. These are reproducible workflow baselines, not model rankings. +Every report says `local artifact score; self-reported` and carries no model +attribution. Reproduce every deck, report, hash, and public bar: ```bash -./acidslide-v1/benchmark/comparative-v1/reproduce.sh +./gloss-v1/benchmark/comparative-v1/reproduce.sh ``` -Release mode intentionally fails until independent prompt convergence, assertion provenance and evidence, reviewer approvals, baselines, environment manifests, and signed release indexes are complete. +Release mode intentionally fails until independent prompt convergence, assertion +provenance and evidence, reviewer approvals, baselines, environment manifests, and +signed release indexes are complete. ## Score provenance -- **Local grading** measures a deck on the caller's machine. Local results are self-reported and are not official leaderboard verification. -- **Hosted grading** runs the same grader inside the controlled Gloss environment. Every public - submission score must carry the exact label +- **Local grading** measures a deck on the caller's machine. Local results are + self-reported and are not official leaderboard verification. +- **Hosted grading** runs the same protocol adapter inside the controlled Gloss + environment. Every public submission score must carry the exact label `grading-verified artifact score; generation-attested`. -- Generation strategy, token count, cost, retries, and generation time are supplied by submitters. They remain **generation-attested** even when the deck itself was grading-verified. -- A report is not eligible when schema validation did not run or failed, the canonical renderer or - reference exports were unavailable, required slides were not compared, or any required stage was - incomplete. +- Generation strategy, token count, cost, retries, and generation time are supplied + by submitters. They remain **generation-attested** even when the deck itself was + grading-verified. +- A report is not eligible when schema validation did not run or failed, the + canonical renderer or reference exports were unavailable, required slides were + not compared, or any required stage was incomplete. ## Repository layout ```text -ACIDSLIDE_OPENSPEC.md Normative v1 contract -acidslide-v1/ - benchmark/ Prompts, assets, candidate checks, gold fixture, and mutation evidence - grader/ Local Python grader and CLI +site/ Static gloss.tools source and public evidence +launch/ Gloss film renderer, verifier, and launch copy +GLOSS_OPENSPEC.md Draft contract for the bundled Gloss v1 suite +gloss-v1/ + benchmark/ ACID-style prompts, cases, checks, fixtures, and evidence + grader/ Gloss v1 protocol adapter and local CLI schemas/ Bundled ECMA-376 Transitional XSD and report schemas - service/ Pre-release hosted API, worker, and leaderboard implementation + service/ Pre-release hosted grading components Dockerfile Canonical Ubuntu 22.04 grading environment -site/ Static gloss.tools source and launch evidence -launch/ Deterministic film renderer and launch copy ``` -## Local development +## Run the bundled suite locally -Requirements: [uv](https://docs.astral.sh/uv/), Python 3.12, LibreOffice Impress, and `pdftoppm` from Poppler. +Gloss currently exercises its first suite through the `gloss` CLI. Requirements: +[uv](https://docs.astral.sh/uv/), Python 3.12, LibreOffice Impress, and `pdftoppm` +from Poppler. ```bash -cd acidslide-v1/grader +cd gloss-v1/grader uv sync --extra dev --locked -uv run acidslide validate ../benchmark/deck/gold/acidslide-v1-gold.pptx +uv run gloss validate ../benchmark/deck/gold/gloss-v1-gold.pptx ``` -Full grading is fail-closed until a frozen release supplies signed cohort provenance and the caller -supplies a complete artifact-context handoff. During development, use `validate` for the runnable -quarantine/XSD smoke above. After the v1 release artifacts are published: +Full grading is fail-closed until a frozen release supplies signed cohort provenance +and the caller supplies a complete artifact-context handoff. During development, +use `validate` for the runnable quarantine/XSD smoke above. After the v1 release +artifacts are published: ```bash -uv run acidslide grade ../submission.pptx \ +uv run gloss grade ../submission.pptx \ --tier 3 \ --artifact-context ./artifact-context.json \ --format json ``` -Write a standalone report and private visual diffs with: +Write a standalone report and private visual diffs: ```bash -uv run acidslide grade ../submission.pptx \ +uv run gloss grade ../submission.pptx \ --tier 3 \ --artifact-context ./artifact-context.json \ --format html \ @@ -100,34 +159,41 @@ uv run acidslide grade ../submission.pptx \ --artifacts private-diffs/ ``` -The CLI exits with status `2` when verification could not be completed. A normally graded deck may receive a failing score without making the grading command itself fail. +The protocol CLI exits with status `2` when verification could not be completed. +A normally graded deck may receive a failing score without making the grading +command itself fail. ## Canonical container ```bash -docker build -t acidslide-v1 acidslide-v1 +docker build -t gloss-v1 gloss-v1 docker run --rm \ --volume "$PWD:/workspace:ro" \ - acidslide-v1 grade /workspace/submission.pptx --tier 3 \ + gloss-v1 grade /workspace/submission.pptx --tier 3 \ --artifact-context /workspace/artifact-context.json --format json ``` ## Quality gates ```bash -cd acidslide-v1/grader +cd gloss-v1/grader uv run ruff check . uv run ruff format --check . -uv run mypy acidslide tests -uv run pytest --cov=acidslide --cov-fail-under=85 +uv run mypy gloss tests +uv run pytest --cov=gloss --cov-fail-under=85 uv build uv run pip-audit ``` -The bundled validator applies deterministic ECMA-376 Markup Compatibility preprocessing before validating against the bundled Part 1 Transitional XSD set. RELAX NG validation is outside the v1 contract. +The bundled validator applies deterministic ECMA-376 Markup Compatibility +preprocessing before validating against the bundled Part 1 Transitional XSD set. +RELAX NG validation is outside the Gloss v1 contract. ## Build it with us +The ACID tradition works because hard cases are public. Help Gloss make generated +decks worth editing: + - [Propose a benchmark case](https://github.com/aronchick/gloss/issues/new?template=benchmark-case.yml) - [Report a grader gap](https://github.com/aronchick/gloss/issues/new?template=grader-bug.yml) - [Challenge evidence or a public claim](https://github.com/aronchick/gloss/issues/new?template=evidence-challenge.yml) @@ -135,4 +201,6 @@ The bundled validator applies deterministic ECMA-376 Markup Compatibility prepro ## License -Code and benchmark materials are released under the [Apache License 2.0](LICENSE), except third-party or asset files that carry their own license notices. +Code and benchmark materials are released under the +[Apache License 2.0](LICENSE), except third-party or asset files that carry their +own license notices. diff --git a/acidslide-v1/benchmark/comparative-v1/cohort.json b/acidslide-v1/benchmark/comparative-v1/cohort.json deleted file mode 100644 index 12dfa45..0000000 --- a/acidslide-v1/benchmark/comparative-v1/cohort.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "disclosure": { - "attribution": "repository-owned path; no model attribution", - "comparison_scope": "reproducible workflow baselines, not model rankings", - "verification_label": "local artifact score; self-reported" - }, - "grader_revision": "unavailable", - "provenance": { - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8" - }, - "scoring_manifest": { - "bundle_hashes": { - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47" - }, - "disclosure": { - "attribution": "repository-owned path; no model attribution", - "comparison_scope": "reproducible workflow baselines, not model rankings", - "verification_label": "local artifact score; self-reported" - }, - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "schema_version": "1.0" - } -} diff --git a/acidslide-v1/benchmark/comparative-v1/manifest.json b/acidslide-v1/benchmark/comparative-v1/manifest.json deleted file mode 100644 index 5ef8fcd..0000000 --- a/acidslide-v1/benchmark/comparative-v1/manifest.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "cohort_sha256": "sha256:1d4d520e6a421a10f15392cb5f352a65515ceb2ab1f34040bdb54bb22e145108", - "disclosure": { - "attribution": "repository-owned path; no model attribution", - "comparison_scope": "reproducible workflow baselines, not model rankings", - "verification_label": "local artifact score; self-reported" - }, - "reproduction_command": "./acidslide-v1/benchmark/comparative-v1/reproduce.sh", - "runs": [ - { - "artifacts": { - "artifact-context.json": "sha256:cff425a07faae7d62ccaed0eff024148ce653da8c6de09e31a8f6e4f8cf3af4b", - "deck.pptx": "sha256:0e6a0785641d5fb902e96babc1ba2c94f4e1d9498651744c92e4b5a18102ba15", - "generation.json": "sha256:e6c484b01cdebf049c692e9bb0f2e491b8338cfc0e5a6ee324c953117f501464", - "report.json": "sha256:2ba243d6579dd1801b8cc99dcea24401ecbbcac6be4de751dc4bf02a23c89014" - }, - "metrics": { - "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.96, - "native_weight_passed": 379, - "native_weight_total": 407, - "native_weighted_pass_percent": 93.12, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "native-precise", - "run": 1, - "seed": 1103 - }, - { - "artifacts": { - "artifact-context.json": "sha256:f6fe5cdd6f13bdca7b079716bf21aaa143d2fdfc1a73cce0ada05fbaf1c459ba", - "deck.pptx": "sha256:3716fa3bb950f2c8457b46e7b4b7cfd92bd28c9ddad20d3e370487666baf49be", - "generation.json": "sha256:affdd966a87e28ba5855112ffd284e3dc465de838f7b46c10611f67e7e6f4414", - "report.json": "sha256:33122b9974a8342ff037ea318cc3c8d0c77ab11b2c595ceb77a73fd4d5ae9120" - }, - "metrics": { - "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.96, - "native_weight_passed": 379, - "native_weight_total": 407, - "native_weighted_pass_percent": 93.12, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "native-precise", - "run": 2, - "seed": 2207 - }, - { - "artifacts": { - "artifact-context.json": "sha256:e8880489fac4302cb865d762c6d0535ddaf851457fd85a9b5a317f673241da13", - "deck.pptx": "sha256:d670d5f2bb9c27e9a98a9c4a53785ab7c8e985344cc2d38163c447476a142c31", - "generation.json": "sha256:6274fb3454ff5ba46658d2ad566c51c9fc7f3b71c2f31b7b0ad0a8e6171d6fe9", - "report.json": "sha256:54138c064964efc53d03158adf55fec0e37968d67cb145ed4658e2ec6aee05f1" - }, - "metrics": { - "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.96, - "native_weight_passed": 379, - "native_weight_total": 407, - "native_weighted_pass_percent": 93.12, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "native-precise", - "run": 3, - "seed": 3301 - }, - { - "artifacts": { - "artifact-context.json": "sha256:624125cddbfd0be43b588b7a609fb7e260dd03d1a13e2b1e586d5d3016b6f339", - "deck.pptx": "sha256:15d3c4c216beaac91c99f620ae0cb00cda3122f079dae01b370de43d9d91793d", - "generation.json": "sha256:02a4a6979a4e76e3a47799546a81122ef789c61a2861afd8e425e57d7cbf448f", - "report.json": "sha256:39510c532c67b6f2747dd805fc76192e28c23ea0a51ba73b2d583375e37f0a2c" - }, - "metrics": { - "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.95, - "native_weight_passed": 379, - "native_weight_total": 407, - "native_weighted_pass_percent": 93.12, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "native-fast", - "run": 1, - "seed": 1103 - }, - { - "artifacts": { - "artifact-context.json": "sha256:a3e929e64626b4e0948fb92dda99c3682d93df50edd0911e86c6b658e4533a3d", - "deck.pptx": "sha256:8891cdafda52fba8c4c995af8654775783ee06b7b8a7ca6d443d5567636eda4d", - "generation.json": "sha256:fa50118325c2de1d08f4f475deb7a87fba9965d9228398362ae7d7c5fd72d57d", - "report.json": "sha256:567f14b3dd2d6ef5796b6255f121e3565ef7a23eb8fbe90e61e2908352fbe552" - }, - "metrics": { - "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.95, - "native_weight_passed": 379, - "native_weight_total": 407, - "native_weighted_pass_percent": 93.12, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "native-fast", - "run": 2, - "seed": 2207 - }, - { - "artifacts": { - "artifact-context.json": "sha256:d27609dc4c894210d4ff1a9a21b857b59856389f02efee8d32ec4ba1abe2aa0a", - "deck.pptx": "sha256:ce294e486f30cb38f70b0134da1d290eca21e1975fc9ac932c347252034f843a", - "generation.json": "sha256:80fdf8daf2b4bf91ee84cf23ddcdbe9df7714ba72f0acd2c022ba705fbd18483", - "report.json": "sha256:101fc4365073e7ad10658d4de0ad179c67686d715a6fe23dadca36066ef313d3" - }, - "metrics": { - "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.95, - "native_weight_passed": 379, - "native_weight_total": 407, - "native_weighted_pass_percent": 93.12, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "native-fast", - "run": 3, - "seed": 3301 - }, - { - "artifacts": { - "artifact-context.json": "sha256:d303cf7d835c41fae261dd50cd014e69328a74426a4afa065f5f8982affcc6da", - "deck.pptx": "sha256:b2a714b92dc2de09f186ecec21a5969efa2eb7a02317c9fae47c0ad06848d95b", - "generation.json": "sha256:2d40b52a9418540076a7d5e961b5c9ac881a9ef6313f87a9ddf7c647d54bfc43", - "report.json": "sha256:a42004dc24ff575ce436e1de0e4293abe28d8c5cb767c434aac30585b8f94acd" - }, - "metrics": { - "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.14, - "native_weight_passed": 349, - "native_weight_total": 407, - "native_weighted_pass_percent": 85.75, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "visual-precise", - "run": 1, - "seed": 1103 - }, - { - "artifacts": { - "artifact-context.json": "sha256:6378035e95191a48fe3f2885b31d6224bf95974a0d85586de7df42e2589dafa1", - "deck.pptx": "sha256:fa2173ea20374f27a2f464a7881eb12adf5fe774ddc027ee1cab4feeb74945a4", - "generation.json": "sha256:d7ade6a6c8bba2bf3cc219e705978f2295e0eb281029f41e6a28143eabc7ed10", - "report.json": "sha256:bf4f811438a96844210533d14c0160add6f7dd64726e17be488f8437bb12f982" - }, - "metrics": { - "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.14, - "native_weight_passed": 349, - "native_weight_total": 407, - "native_weighted_pass_percent": 85.75, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "visual-precise", - "run": 2, - "seed": 2207 - }, - { - "artifacts": { - "artifact-context.json": "sha256:5f5a317fdc4ca3acf04ed304c90a227f12097274af3c018a34b41bc6dc32f6b3", - "deck.pptx": "sha256:c4e9ead5f6b485c35d1a7022f8e90ae40dfe0a8fa129baf6aecfddcebfb6e47e", - "generation.json": "sha256:1afbd5f7bf72ab7d507aa732b1a24de92068025afa8baed101cea5c261d51a9f", - "report.json": "sha256:4b5bc3444f00c6a06874eb5096437076c08fd4e722c060965b310b619cb093ea" - }, - "metrics": { - "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.14, - "native_weight_passed": 349, - "native_weight_total": 407, - "native_weighted_pass_percent": 85.75, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "visual-precise", - "run": 3, - "seed": 3301 - }, - { - "artifacts": { - "artifact-context.json": "sha256:c6af50efd29b1c2f92bc19a52d0fcc651b451a0416067085e4a6e2a360ac96eb", - "deck.pptx": "sha256:4de0f7adc60ebef9e236b889fac5fc0393de0a7876c673e1e3ed8621afab7549", - "generation.json": "sha256:57113fd1d7eec455972059e24fb41bb5a6020300f7b238c37ac32aa15195d2a9", - "report.json": "sha256:ca09550788c65d8ba023d7d45338e5260d7ca82b96be9b106267f8b8dd4364fc" - }, - "metrics": { - "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.25, - "native_weight_passed": 349, - "native_weight_total": 407, - "native_weighted_pass_percent": 85.75, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "visual-fast", - "run": 1, - "seed": 1103 - }, - { - "artifacts": { - "artifact-context.json": "sha256:f8607e1b94683884d178e0859b71035051110d533fc59af843521031b6dffbd7", - "deck.pptx": "sha256:cbc64ef5b68b856974258ffbbb5df4c1c909c3f1f582111312e2a7e3ba2b738b", - "generation.json": "sha256:5edf8c9018f429f52cc42526b2b14cfc1e0ec8d3f486b0fc5c3fcaffdcad1215", - "report.json": "sha256:19735c115c89e3b15e7c8280296707d8a3d90452c041049ce58c652b88404ce9" - }, - "metrics": { - "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.25, - "native_weight_passed": 349, - "native_weight_total": 407, - "native_weighted_pass_percent": 85.75, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "visual-fast", - "run": 2, - "seed": 2207 - }, - { - "artifacts": { - "artifact-context.json": "sha256:c596022af0ea95e0e54ac119d443e06774d48c338134533d0d189fbf7bd0e2db", - "deck.pptx": "sha256:b93f48328e3c0289e95c623b59084998c202f7713f448b40f4408acea2c101f2", - "generation.json": "sha256:c92454b4a11d898b6f66d88e8df4a0440a3ae56854baf7b20ff856d2e147a276", - "report.json": "sha256:b2c57d3b920b29f58dc691c2a0229719d015879073321d3f9ebf256db7711bca" - }, - "metrics": { - "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.25, - "native_weight_passed": 349, - "native_weight_total": 407, - "native_weighted_pass_percent": 85.75, - "scoring_completed": true, - "verification_complete": true - }, - "path_id": "visual-fast", - "run": 3, - "seed": 3301 - } - ], - "schema_version": "1.0", - "source_hashes": { - "generate_baselines.py": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", - "score_bundle.py": "sha256:1a43dc1c4c648438e2e66e62f12e7dfd7429e0186d53e2fb9ac21a9494b22d35" - }, - "summary_sha256": "sha256:3ef1f5c2588cc5a4594d62b7f26e08c1288f6c380144af4258e8ba1c20e3730d" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-context.json deleted file mode 100644 index 18ee93d..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:5838efe536873feecad09469382545fe20868422eb428c4ab39abf73dcdc9b78", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:02a4a6979a4e76e3a47799546a81122ef789c61a2861afd8e425e57d7cbf448f", - "generation_seed": "1103", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "canonical", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:15d3c4c216beaac91c99f620ae0cb00cda3122f079dae01b370de43d9d91793d", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-sha256.json deleted file mode 100644 index 4795180..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:624125cddbfd0be43b588b7a609fb7e260dd03d1a13e2b1e586d5d3016b6f339", - "deck.pptx": "sha256:15d3c4c216beaac91c99f620ae0cb00cda3122f079dae01b370de43d9d91793d", - "generation.json": "sha256:02a4a6979a4e76e3a47799546a81122ef789c61a2861afd8e425e57d7cbf448f", - "report.json": "sha256:39510c532c67b6f2747dd805fc76192e28c23ea0a51ba73b2d583375e37f0a2c" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-context.json deleted file mode 100644 index ce1270c..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:b45ea6b3b1d5e6107f92749dc31b59e693f17cc0fe2de18ee6a8d99c4490e16f", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:fa50118325c2de1d08f4f475deb7a87fba9965d9228398362ae7d7c5fd72d57d", - "generation_seed": "2207", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "canonical", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:8891cdafda52fba8c4c995af8654775783ee06b7b8a7ca6d443d5567636eda4d", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-sha256.json deleted file mode 100644 index bba1b81..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:a3e929e64626b4e0948fb92dda99c3682d93df50edd0911e86c6b658e4533a3d", - "deck.pptx": "sha256:8891cdafda52fba8c4c995af8654775783ee06b7b8a7ca6d443d5567636eda4d", - "generation.json": "sha256:fa50118325c2de1d08f4f475deb7a87fba9965d9228398362ae7d7c5fd72d57d", - "report.json": "sha256:567f14b3dd2d6ef5796b6255f121e3565ef7a23eb8fbe90e61e2908352fbe552" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-context.json deleted file mode 100644 index 9ea0efa..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:242b1d82037d9ce23a822cf39e83284e0badf3c34978a24efa4212955c066bc7", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:80fdf8daf2b4bf91ee84cf23ddcdbe9df7714ba72f0acd2c022ba705fbd18483", - "generation_seed": "3301", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "canonical", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:ce294e486f30cb38f70b0134da1d290eca21e1975fc9ac932c347252034f843a", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-sha256.json deleted file mode 100644 index 7d28866..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:d27609dc4c894210d4ff1a9a21b857b59856389f02efee8d32ec4ba1abe2aa0a", - "deck.pptx": "sha256:ce294e486f30cb38f70b0134da1d290eca21e1975fc9ac932c347252034f843a", - "generation.json": "sha256:80fdf8daf2b4bf91ee84cf23ddcdbe9df7714ba72f0acd2c022ba705fbd18483", - "report.json": "sha256:101fc4365073e7ad10658d4de0ad179c67686d715a6fe23dadca36066ef313d3" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-context.json deleted file mode 100644 index dd6dbaf..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:4d9ca6b255237129f2a9329c1cc3597415b2a2bcd46c1451ae274b69e0665479", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:e6c484b01cdebf049c692e9bb0f2e491b8338cfc0e5a6ee324c953117f501464", - "generation_seed": "1103", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "canonical", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:0e6a0785641d5fb902e96babc1ba2c94f4e1d9498651744c92e4b5a18102ba15", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-sha256.json deleted file mode 100644 index 9d23bcb..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:cff425a07faae7d62ccaed0eff024148ce653da8c6de09e31a8f6e4f8cf3af4b", - "deck.pptx": "sha256:0e6a0785641d5fb902e96babc1ba2c94f4e1d9498651744c92e4b5a18102ba15", - "generation.json": "sha256:e6c484b01cdebf049c692e9bb0f2e491b8338cfc0e5a6ee324c953117f501464", - "report.json": "sha256:2ba243d6579dd1801b8cc99dcea24401ecbbcac6be4de751dc4bf02a23c89014" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/deck.pptx b/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/deck.pptx deleted file mode 100644 index ed0ac5f..0000000 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/deck.pptx and /dev/null differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-context.json deleted file mode 100644 index d8f9b3e..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:834e2d51a963f99bcbb89fce7cde4d1203e90f54083a3f8fe23f7ae0bc5cd7cb", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:affdd966a87e28ba5855112ffd284e3dc465de838f7b46c10611f67e7e6f4414", - "generation_seed": "2207", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "canonical", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:3716fa3bb950f2c8457b46e7b4b7cfd92bd28c9ddad20d3e370487666baf49be", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-sha256.json deleted file mode 100644 index 797da02..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:f6fe5cdd6f13bdca7b079716bf21aaa143d2fdfc1a73cce0ada05fbaf1c459ba", - "deck.pptx": "sha256:3716fa3bb950f2c8457b46e7b4b7cfd92bd28c9ddad20d3e370487666baf49be", - "generation.json": "sha256:affdd966a87e28ba5855112ffd284e3dc465de838f7b46c10611f67e7e6f4414", - "report.json": "sha256:33122b9974a8342ff037ea318cc3c8d0c77ab11b2c595ceb77a73fd4d5ae9120" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-context.json deleted file mode 100644 index 6253395..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:a30ee4f8c1b93a0a6bb81237cc905e2bb9f558a86d129dfb529acdc584ea3ba3", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:6274fb3454ff5ba46658d2ad566c51c9fc7f3b71c2f31b7b0ad0a8e6171d6fe9", - "generation_seed": "3301", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "canonical", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:d670d5f2bb9c27e9a98a9c4a53785ab7c8e985344cc2d38163c447476a142c31", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-sha256.json deleted file mode 100644 index 489d98b..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:e8880489fac4302cb865d762c6d0535ddaf851457fd85a9b5a317f673241da13", - "deck.pptx": "sha256:d670d5f2bb9c27e9a98a9c4a53785ab7c8e985344cc2d38163c447476a142c31", - "generation.json": "sha256:6274fb3454ff5ba46658d2ad566c51c9fc7f3b71c2f31b7b0ad0a8e6171d6fe9", - "report.json": "sha256:54138c064964efc53d03158adf55fec0e37968d67cb145ed4658e2ec6aee05f1" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-context.json deleted file mode 100644 index c7da7cc..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:c185890d7d6630f8856ee512fda025d0215d96350b46cff357c0b563736a6a4e", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:57113fd1d7eec455972059e24fb41bb5a6020300f7b238c37ac32aa15195d2a9", - "generation_seed": "1103", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "paraphrase-a", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:4de0f7adc60ebef9e236b889fac5fc0393de0a7876c673e1e3ed8621afab7549", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-sha256.json deleted file mode 100644 index 78853b5..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:c6af50efd29b1c2f92bc19a52d0fcc651b451a0416067085e4a6e2a360ac96eb", - "deck.pptx": "sha256:4de0f7adc60ebef9e236b889fac5fc0393de0a7876c673e1e3ed8621afab7549", - "generation.json": "sha256:57113fd1d7eec455972059e24fb41bb5a6020300f7b238c37ac32aa15195d2a9", - "report.json": "sha256:ca09550788c65d8ba023d7d45338e5260d7ca82b96be9b106267f8b8dd4364fc" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-context.json deleted file mode 100644 index 677b2c5..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:b1fda2049ce5937e855f5ab9cc6658ffb495c1d118508ee2334007e2a1069d79", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:5edf8c9018f429f52cc42526b2b14cfc1e0ec8d3f486b0fc5c3fcaffdcad1215", - "generation_seed": "2207", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "paraphrase-a", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:cbc64ef5b68b856974258ffbbb5df4c1c909c3f1f582111312e2a7e3ba2b738b", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-sha256.json deleted file mode 100644 index 96a5f33..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:f8607e1b94683884d178e0859b71035051110d533fc59af843521031b6dffbd7", - "deck.pptx": "sha256:cbc64ef5b68b856974258ffbbb5df4c1c909c3f1f582111312e2a7e3ba2b738b", - "generation.json": "sha256:5edf8c9018f429f52cc42526b2b14cfc1e0ec8d3f486b0fc5c3fcaffdcad1215", - "report.json": "sha256:19735c115c89e3b15e7c8280296707d8a3d90452c041049ce58c652b88404ce9" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-context.json deleted file mode 100644 index 047233b..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:a3b80112cf38386fe193bdee91058864aced31454e7f8d4228c56961d9f55868", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:c92454b4a11d898b6f66d88e8df4a0440a3ae56854baf7b20ff856d2e147a276", - "generation_seed": "3301", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "paraphrase-a", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:b93f48328e3c0289e95c623b59084998c202f7713f448b40f4408acea2c101f2", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-sha256.json deleted file mode 100644 index b952dfd..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:c596022af0ea95e0e54ac119d443e06774d48c338134533d0d189fbf7bd0e2db", - "deck.pptx": "sha256:b93f48328e3c0289e95c623b59084998c202f7713f448b40f4408acea2c101f2", - "generation.json": "sha256:c92454b4a11d898b6f66d88e8df4a0440a3ae56854baf7b20ff856d2e147a276", - "report.json": "sha256:b2c57d3b920b29f58dc691c2a0229719d015879073321d3f9ebf256db7711bca" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-context.json deleted file mode 100644 index 1ac0e04..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:03c94f123e54bc8ba9bbebe2c1c37166488d85700b39b8466b634db85c1b087d", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:2d40b52a9418540076a7d5e961b5c9ac881a9ef6313f87a9ddf7c647d54bfc43", - "generation_seed": "1103", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "paraphrase-a", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:b2a714b92dc2de09f186ecec21a5969efa2eb7a02317c9fae47c0ad06848d95b", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-sha256.json deleted file mode 100644 index 804f1bd..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:d303cf7d835c41fae261dd50cd014e69328a74426a4afa065f5f8982affcc6da", - "deck.pptx": "sha256:b2a714b92dc2de09f186ecec21a5969efa2eb7a02317c9fae47c0ad06848d95b", - "generation.json": "sha256:2d40b52a9418540076a7d5e961b5c9ac881a9ef6313f87a9ddf7c647d54bfc43", - "report.json": "sha256:a42004dc24ff575ce436e1de0e4293abe28d8c5cb767c434aac30585b8f94acd" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-context.json deleted file mode 100644 index a988638..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:ef5117a3dae7c414331a21c91a22bc13d6f0019b272aa6ae6cf57c8ba91afaaa", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:d7ade6a6c8bba2bf3cc219e705978f2295e0eb281029f41e6a28143eabc7ed10", - "generation_seed": "2207", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "paraphrase-a", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:fa2173ea20374f27a2f464a7881eb12adf5fe774ddc027ee1cab4feeb74945a4", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-sha256.json deleted file mode 100644 index fe86ece..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:6378035e95191a48fe3f2885b31d6224bf95974a0d85586de7df42e2589dafa1", - "deck.pptx": "sha256:fa2173ea20374f27a2f464a7881eb12adf5fe774ddc027ee1cab4feeb74945a4", - "generation.json": "sha256:d7ade6a6c8bba2bf3cc219e705978f2295e0eb281029f41e6a28143eabc7ed10", - "report.json": "sha256:bf4f811438a96844210533d14c0160add6f7dd64726e17be488f8437bb12f982" -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/deck.pptx b/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/deck.pptx deleted file mode 100644 index bcc6f22..0000000 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/deck.pptx and /dev/null differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-context.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-context.json deleted file mode 100644 index 7c2e699..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-context.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", - "assistance_class": "human-assisted", - "attestation": { - "attribution": "repository-owned path; no model attribution", - "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" - }, - "attested_metrics": { - "external_resources_used": false, - "human_intervention": false, - "post_processing": false - }, - "campaign_id": null, - "campaign_slot": null, - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:f64f495b1ce1ace47f5abbd9341843313bf9f05108146f012cb3c8371c623080", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "local_cohort": true, - "render_runtime": { - "dependencies": { - "Pillow": "12.3.0", - "lxml": "6.1.1", - "numpy": "2.4.4", - "scikit-image": "0.26.0" - }, - "export_height": 1080, - "export_width": 1920, - "grader_version": "1.0.0a1", - "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", - "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", - "machine": "x86_64", - "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", - "python": "3.12.11", - "python_implementation": "CPython", - "timezone": "UTC" - }, - "schema_version": "1.0" - }, - "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "generation_profile_sha256": "sha256:1afbd5f7bf72ab7d507aa732b1a24de92068025afa8baed101cea5c261d51a9f", - "generation_seed": "3301", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", - "gold_duplicate_check": "clear", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "grading_mode": "local", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "mce_resolved_package_sha256": null, - "model_key": null, - "model_revision_key": null, - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "prompt_variant": "paraphrase-a", - "robustness_group_id": null, - "run_kind": "submission", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "submission_id": null, - "submission_sha256": "sha256:c4e9ead5f6b485c35d1a7022f8e90ae40dfe0a8fa129baf6aecfddcebfb6e47e", - "submitter_id": null, - "targeted_tier": 3 -} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-sha256.json b/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-sha256.json deleted file mode 100644 index d682aff..0000000 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-sha256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "artifact-context.json": "sha256:5f5a317fdc4ca3acf04ed304c90a227f12097274af3c018a34b41bc6dc32f6b3", - "deck.pptx": "sha256:c4e9ead5f6b485c35d1a7022f8e90ae40dfe0a8fa129baf6aecfddcebfb6e47e", - "generation.json": "sha256:1afbd5f7bf72ab7d507aa732b1a24de92068025afa8baed101cea5c261d51a9f", - "report.json": "sha256:4b5bc3444f00c6a06874eb5096437076c08fd4e722c060965b310b619cb093ea" -} diff --git a/acidslide-v1/benchmark/deck/exports/slide-01.png b/acidslide-v1/benchmark/deck/exports/slide-01.png deleted file mode 100644 index bce2b74..0000000 Binary files a/acidslide-v1/benchmark/deck/exports/slide-01.png and /dev/null differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-10.png b/acidslide-v1/benchmark/deck/exports/slide-10.png deleted file mode 100644 index d0ea8a2..0000000 Binary files a/acidslide-v1/benchmark/deck/exports/slide-10.png and /dev/null differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-11.png b/acidslide-v1/benchmark/deck/exports/slide-11.png deleted file mode 100644 index 9900b28..0000000 Binary files a/acidslide-v1/benchmark/deck/exports/slide-11.png and /dev/null differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-20.png b/acidslide-v1/benchmark/deck/exports/slide-20.png deleted file mode 100644 index 94f3eb5..0000000 Binary files a/acidslide-v1/benchmark/deck/exports/slide-20.png and /dev/null differ diff --git a/acidslide-v1/benchmark/fixtures/expected-deck.json b/acidslide-v1/benchmark/fixtures/expected-deck.json deleted file mode 100644 index 3725cac..0000000 --- a/acidslide-v1/benchmark/fixtures/expected-deck.json +++ /dev/null @@ -1 +0,0 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout2.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s1:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"subTitle","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"subTitle","table_dimensions":null},"node_id":"s1:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":2160000,"width":3600000,"x":5760000,"y":2880000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"25000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.25","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":2880000,"width":2880000,"x":5040000,"y":1440000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"40000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.4","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":3},{"asset_sha256":"sha256:63cab1432d0b4d8ab581c42b26d35e02ec28c32ada2e15267fd7eac760c04007","bbox":{"height":3060000,"width":5400000,"x":6120000,"y":720000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":true,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s1:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":3600000,"width":2160000,"x":6480000,"y":360000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"30000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.3","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s1:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"44","italic":null,"language":"en-US","rtl":false,"text":"AcidSlide v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":3977640,"width":10972800,"x":609480,"y":1604520},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"subTitle","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"subTitle","table_dimensions":null},"node_id":"s1:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":false,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"Benchmark for Slide Generation Fidelity"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s1:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s1:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"1"}],"z_index":9}],"part_name":"/ppt/slides/slide1.xml","relationships":[{"id":"rId1","target":"/ppt/media/image1.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/slideLayouts/slideLayout2.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":1},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s2:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s2:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s2:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Agenda"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3977640,"width":10972800,"x":609480,"y":1604520},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s2:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Opening Remarks"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Welcome and introductions"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Safety briefing"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Technical Deep Dive"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Architecture overview"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Performance benchmarks"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Security audit results"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Breakout Sessions"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Track A: Infrastructure"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Track B: Applications"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Closing & Next Steps"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":1260000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"09:00"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":2988000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":2988000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"11:30"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":4716000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":4716000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"14:00"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s2:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s2:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"2"}],"z_index":11}],"part_name":"/ppt/slides/slide2.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":2},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":648000,"width":5760000,"x":540000,"y":288000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s3:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Performance Metrics"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4320000,"width":10800000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":5,"rows":7}},"node_id":"s3:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Metric"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q1 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q2 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q3 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Target"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Latency (p50)"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"12ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"11ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"9ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"10ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Latency (p99)"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"89ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"72ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"58ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"75ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Throughput"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,200 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,450 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,890 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"2,000 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Error Rate"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.12%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.08%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.04%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.05%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Uptime"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.91%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.95%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.98%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.95%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Cache Hit"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"72%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"78%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"84%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"80%"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":792000,"width":2880000,"x":8640000,"y":5508000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s3:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide3.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":684000,"width":2736000,"x":8712000,"y":5544000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s3:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Throughput target"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"missed by 5.5%"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s3:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s3:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"3"}],"z_index":5}],"part_name":"/ppt/slides/slide3.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":3},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s4:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s4:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s4:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Revenue Growth"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":5040000,"width":7200000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":10,"series_count":2,"value_point_count":10},"chart_type":"barChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"barChart","table_dimensions":null},"node_id":"s4:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":3240000,"x":8280000,"y":1368000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Key Takeaways:"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":1512000,"width":3240000,"x":8280000,"y":1728000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Native Bullet List","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Total revenue up 38.2% YoY"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"APAC fastest-growing region"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"All regions exceeded targets"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":1774800},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":1956600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":2138400},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":648000,"width":1800000,"x":5220000,"y":3312000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"+62.9% YoY"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":648000,"width":1800000,"x":5220000,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"+84.6% YoY"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s4:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s4:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"4"}],"z_index":12}],"part_name":"/ppt/slides/slide4.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":4},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s5:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s5:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s5:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Our Team"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":540000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":540000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1440000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":1440000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":720000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Sarah Chen"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":720000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Chief Architect"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":864000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"15 years building distributed systems at scale"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Sarah Chen Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Sarah Chen"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Chief Architect"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"15 years building distributed systems at scale"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":4320000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n4.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":5220000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n4.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":5220000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":4500000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Marcus Rivera"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":4500000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Head of Design"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":4644000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Formerly at Apple, obsessed with pixel-perfect interfaces"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Marcus Rivera Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Marcus Rivera"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Head of Design"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Formerly at Apple, obsessed with pixel-perfect interfaces"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":8100000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":8100000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n5.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":9000000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n5.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":9000000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":8280000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Yuki Tanaka"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":8280000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"ML Engineering Lead"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":8424000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PhD in NLP, built the model serving infrastructure"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Yuki Tanaka Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Yuki Tanaka"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"ML Engineering Lead"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PhD in NLP, built the model serving infrastructure"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s5:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s5:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"5"}],"z_index":7}],"part_name":"/ppt/slides/slide5.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":5},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":432000,"width":3420000,"x":432000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"Global Perspectives"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":3060000,"width":3240000,"x":432000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"The rapid advancement of language models"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"has transformed how organizations approach"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"document generation. From financial reports"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"to marketing materials, AI-driven content"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"creation is reshaping every industry."}],"z_index":1},{"asset_sha256":null,"bbox":{"height":735120,"width":3420000,"x":4320000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Noto Sans Arabic","font_size_pt":"24","italic":null,"language":"hi-IN","rtl":true,"text":"وجهات نظر عالمية"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3102840,"width":3240000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"لقد أدى التقدم السريع في نماذج اللغة إلى تحويل"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"كيفية تعامل المؤسسات مع إنشاء المستندات. من"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"التقارير المالية إلى المواد التسويقية، يعيد إنشاء"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"المحتوى المدعوم بالذكاء الاصطناعي تشكيل كل صناعة."}],"z_index":3},{"asset_sha256":null,"bbox":{"height":532440,"width":3420000,"x":8280000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Noto Sans CJK JP","font_size_pt":"24","italic":null,"language":"zh-CN","rtl":false,"text":"グローバルな視点"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":3060000,"width":3420000,"x":8280000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"言語モデルの急速な進歩により、組織がドキュメント生成に"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"取り組む方法が変革されました。財務報告からマーケティング"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"資料まで、"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"AI"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"主導のコンテンツ作成はあらゆる産業を"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"再形成しています。"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":4680000,"width":0,"x":4032000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s6:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":4680000,"width":0,"x":8100000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s6:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":1440000,"width":4320000,"x":5400000,"y":4680000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"90000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.9","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s6:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":1152000,"width":4032000,"x":5544000,"y":4824000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"AI-generated slides must handle RTL text,"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"CJK line breaking, and mixed scripts correctly."}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s6:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s6:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"6"}],"z_index":11}],"part_name":"/ppt/slides/slide6.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":6},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s7:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Image Handling"}],"z_index":0},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2880000,"width":3600000,"x":540000,"y":900000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":2362,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":1},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2880000,"width":2880000,"x":4680000,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s7:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":2},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":2880000,"width":3600000,"x":8100000,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s7:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":3600000,"x":540000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Full panorama crop"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":4680000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Circle-masked detail"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":324000,"width":3600000,"x":8100000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rounded corner crop"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":2160000,"width":2160000,"x":5040000,"y":1260000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":"50000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.5","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":504000,"width":1944000,"x":5148000,"y":2016000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"PREVIEW"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s7:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s7:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"7"}],"z_index":10}],"part_name":"/ppt/slides/slide7.xml","relationships":[{"id":"rId1","target":"/ppt/media/image2.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/media/image3.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/media/image4.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId4","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":7},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1080000,"width":12192120,"x":0,"y":5400000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"gradFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s8:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s8:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Depth & Layering"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":3240000,"width":5400000,"x":1440000,"y":1800000},"children":[{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":1440000,"y":2160000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":2520000,"y":1800000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 2"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3600000,"width":6480000,"x":3600000,"y":720000},"children":[{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":3600000,"y":1440000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 3"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"55000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.55","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 4"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":5760000,"y":720000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"90000","color":{"kind":"srgbClr","value":"ffffff"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.9","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 5"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 3"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 4"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 5"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s8:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s8:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"8"}],"z_index":5}],"part_name":"/ppt/slides/slide8.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":8},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s9:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide9.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s9:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide9.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s9:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"API Reference"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":252000,"width":5040000,"x":648000,"y":1008000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Fixed Size (clips)"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":252000,"width":5040000,"x":6480000,"y":1008000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Auto-Shrink (fits)"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":5040000,"width":5040000,"x":648000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"GET /api/v1/submissions"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Authorization: Bearer YOUR_TOKEN_HERE"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Content-Type: application/json"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Query Parameters:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"model_id string required Filter by model"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"tier integer optional 1, 2, or 3"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"status string optional queued|grading|completed"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"limit integer optional Default: 20, max: 100"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"offset integer optional Default: 0"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Response 200:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"submissions\": ["},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"id\": \"sub_abc123\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"model_id\": \"gpt-4o\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"tier\": 3,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"status\": \"completed\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"fidelity_score\": 0.847,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"created_at\": \"2025-01-15T10:30:00Z\""},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"],"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"total\": 142,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"has_more\": true"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"NOTE TO DESIGNER: The parentheses above represent"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces in the actual slide text. When"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"typing this content into the slide, use standard"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces, i.e., the opening and closing"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"brace characters. They are written as parentheses"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"here only because this brief avoids those characters."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":5040000,"width":5040000,"x":6480000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"GET /api/v1/submissions"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Authorization: Bearer YOUR_TOKEN_HERE"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Content-Type: application/json"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Query Parameters:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"model_id string required Filter by model"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"tier integer optional 1, 2, or 3"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"status string optional queued|grading|completed"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"limit integer optional Default: 20, max: 100"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"offset integer optional Default: 0"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Response 200:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"submissions\": ["},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"id\": \"sub_abc123\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"model_id\": \"gpt-4o\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"tier\": 3,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"status\": \"completed\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"fidelity_score\": 0.847,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"created_at\": \"2025-01-15T10:30:00Z\""},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"],"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"total\": 142,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"has_more\": true"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"NOTE TO DESIGNER: The parentheses above represent"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces in the actual slide text. When"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"typing this content into the slide, use standard"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces, i.e., the opening and closing"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"brace characters. They are written as parentheses"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"here only because this brief avoids those characters."},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Error Responses:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"401 Unauthorized - Invalid or expired token"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"403 Forbidden - Rate limit exceeded"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"404 Not Found - Submission not found"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"422 Unprocessable - Invalid parameters"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"500 Internal Server Error - Contact support"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Rate Limits:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Free tier: 10 req/min, 100 req/hour"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Pro tier: 60 req/min, 1000 req/hour"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Enterprise: Custom"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s9:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s9:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"9"}],"z_index":8}],"part_name":"/ppt/slides/slide9.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":9},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s10:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"System Architecture"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":720000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Client App"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"API Gateway"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3060000,"width":7560000,"x":2160000,"y":3240000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":4680000,"x":3600000,"y":3240000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":3600000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":6480000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":7560000,"x":2160000,"y":5220000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":2160000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":7920000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":360,"width":2520360,"x":2520000,"y":1620000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":1080360,"width":1440360,"x":4500000,"y":2160000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"bentConnector3","table_dimensions":null},"node_id":"s10:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":1080360,"width":360,"x":5940000,"y":2160000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":360,"width":360360,"x":6480000,"y":3780000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[4]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":1440360,"width":540360,"x":6840000,"y":4320000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[5]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":360,"width":1080360,"x":3960000,"y":5760000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[6]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":360,"width":1080360,"x":6840000,"y":5760000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[7]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":252000,"width":792000,"x":3060000,"y":1296000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"HTTPS"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":252000,"width":900000,"x":3780000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"JWT verify"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":252000,"width":792000,"x":5400000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Enqueue"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":252000,"width":3960000,"x":3960000,"y":2808000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Processing Layer"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":252000,"width":4680000,"x":3600000,"y":4824000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Persistence Layer"}],"z_index":15},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s10:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s10:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"10"}],"z_index":17}],"part_name":"/ppt/slides/slide10.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":10},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s11:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s11:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s11:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Brand Colors"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1080000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":1080000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Primary"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":4320000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Secondary"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":7560000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":7560000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Accent 1"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1080000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"ff6b35"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":1080000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":4320000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"7b2d8e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":4320000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":7560000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"3d9970"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":13},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":7560000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[15]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":648000,"width":10440000,"x":720000,"y":5508000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[16]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Top row uses theme color references. Bottom row uses explicit RGB values."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Changing the theme will update the top row but not the bottom row."}],"z_index":15},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s11:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[17]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s11:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[18]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"11"}],"z_index":17}],"part_name":"/ppt/slides/slide11.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":11},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s12:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide12.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s12:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide12.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s12:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Document Fields"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":1368000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Current slide: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":""}],"z_index":3},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":1368000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Live slide number field (not static text)"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":2592000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"datetime","field_types":["datetime"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Generated: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"1/3/-1"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":2592000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Fixed date/time field"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":3816000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":3816000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Footer from master placeholder"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Slide 12"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Static text comparison"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s12:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s12:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"12"}],"z_index":12}],"part_name":"/ppt/slides/slide12.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":12},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s13:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Composite Stress"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":3600000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":6,"series_count":1,"value_point_count":6},"chart_type":"pieChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"pieChart","table_dimensions":null},"node_id":"s13:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":2520000,"width":3240000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":3,"rows":4}},"node_id":"s13:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[2]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Check"},{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Status"},{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Weight"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Schema"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"3"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rendering"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"2"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Assets"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Review"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"1"}],"z_index":2},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2160000,"width":2880000,"x":8280000,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":0,"l":2362,"r":0,"t":0},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":466920,"width":6840000,"x":4500000,"y":3960000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"الهيكل والمحتوى والعرض في اختبار واحد"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":648000,"width":2520000,"x":900000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":432000,"width":2376000,"x":972000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE CHART"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":648000,"width":2520000,"x":4680000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":432000,"width":2376000,"x":4752000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE TABLE"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":648000,"width":2700000,"x":8460000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":432000,"width":2556000,"x":8532000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"APPROVED ASSET"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":0,"x":2160000,"y":3960000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":900000,"width":0,"x":5940000,"y":3600000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":12},{"asset_sha256":null,"bbox":{"height":1260000,"width":0,"x":9720000,"y":3240000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":13},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s13:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s13:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"13"}],"z_index":15}],"part_name":"/ppt/slides/slide13.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart2.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/media/image5.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":13},{"layout_part":"/ppt/slideLayouts/slideLayout4.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s14:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":4426920,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s14:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":3288240,"width":4426920,"x":5152680,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s14:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s14:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"RTL Systems Review"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":4500000,"width":0,"x":6084000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s14:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":4320000,"width":5040000,"x":540000,"y":1152000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s14:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"مراجعة الأنظمة الموزعة"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"دقة العرض هي أساس المقارنة بين الأنظمة."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"سلامة البنية تحافظ على المعنى والتفاعل."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"The"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" الذكاء الاصطناعي "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"revolution"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" تتطلب نصاً ثنائي الاتجاه."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"الإصدار "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"AcidSlide v1"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" يختبر التوافق."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"يجب الحفاظ على علامات الترقيم وترتيب "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"Unicode"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":4320000,"width":4860000,"x":6660000,"y":1152000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s14:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"A structural benchmark must preserve meaning and direction."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Rendering alone cannot prove native editability."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Bidirectional runs must retain their Unicode order."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Mirrored padding makes the comparison deliberate."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"The benchmark records both artifact and visual fidelity."}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s14:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s14:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"14"}],"z_index":8}],"part_name":"/ppt/slides/slide14.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout4.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":14},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s15:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Rotation Atlas"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":0,"width":10980000,"x":540000,"y":2880000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"line","table_dimensions":null},"node_id":"s15:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":360000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":540000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Baseline 0°"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":2520000,"y":2519640},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n4","rotation_degrees":"315","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":2700000,"y":2609640},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n5","rotation_degrees":"315","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Diagonal 45°"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":4680000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n6","rotation_degrees":"27","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":4860000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n7","rotation_degrees":"27","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Vertical 90°"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":6839640,"y":2519640},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n8","rotation_degrees":"225","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":7019640,"y":2609640},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n9","rotation_degrees":"225","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Reverse 135°"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":9000000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n10","rotation_degrees":"9","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":9180000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n11","rotation_degrees":"9","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Vertical 270°"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s15:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s15:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"15"}],"z_index":13}],"part_name":"/ppt/slides/slide15.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":15},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":3600000,"width":3600000,"x":-1080000,"y":-720000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Negative Circle","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s16:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":2160000,"width":4320000,"x":10392120,"y":2160000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Right Bleed","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":5760000,"x":2880000,"y":-360000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Top Bleed","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s16:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Beyond the Frame"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":648000,"width":5400000,"x":3240000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"3","italic":null,"language":"en-US","rtl":false,"text":"INTENTIONAL BLEED"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":504000,"width":6480000,"x":2700000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Negative coordinates are part of the composition."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s16:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s16:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"16"}],"z_index":7}],"part_name":"/ppt/slides/slide16.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":16},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s17:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Nested Systems"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4680000,"width":9720000,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":1893240,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":1080000,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.0.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":1312200,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"A1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.0.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"A1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":1080000,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":1893240,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":1080000,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.0.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":1312200,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"A2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.0.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"A2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"INPUT Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":4758840,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":4758840,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":5572080,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":4758840,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.1.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897200,"x":4991400,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"B1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.1.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"B1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":4758840,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":5572080,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":4758840,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.1.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897200,"x":4991400,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"B2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.1.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"B2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PROCESS Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":8437680,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":8437680,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":9250920,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":8437680,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.2.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":8670240,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"C1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.2.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"C1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":8437680,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":9250920,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":8437680,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.2.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":8670240,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"C2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.2.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"C2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"OUTPUT Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Nested Systems Outer Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s17:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s17:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"17"}],"z_index":3}],"part_name":"/ppt/slides/slide17.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":17},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s18:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Three Cities / "},{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"zh-CN","rtl":false,"text":"三つの都市"}],"z_index":0},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":5220000,"width":3420000,"x":4386240,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"Center Column Tiled Pattern","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":1},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":1260000,"width":3420000,"x":642240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":3543,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":642240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Systems"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":642240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Cities expose the systems beneath daily life: transport, energy, data, and the people who connect them."}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":642240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Structure makes the invisible legible.”"}],"z_index":5},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":1260000,"width":3420000,"x":4386240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":12283,"l":0,"r":0,"t":12283},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[2]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":4386240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"zh-CN","rtl":false,"text":"システム"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":4386240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"生成されたスライドは構造と意味を保持します。"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"編集可能な構造が共有された理解を支えます。"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":4386240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"構造は意味を運びます。”"}],"z_index":9},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":1260000,"width":3420000,"x":8130240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":3543,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[3]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":8130240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Shared Futures"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":8130240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"A common visual language lets teams compare evidence, preserve intent, and build toward shared futures."}],"z_index":12},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":8130240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Consistency is a form of trust.”"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s18:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s18:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"18"}],"z_index":15}],"part_name":"/ppt/slides/slide18.xml","relationships":[{"id":"rId1","target":"/ppt/media/image6.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/media/image7.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/media/image8.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId4","target":"/ppt/media/image9.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId5","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":18},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s19:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s19:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s19:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Design System Audit"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Typography"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":547920,"width":3240000,"x":3060000,"y":972000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Carlito 36"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":396000,"width":3600000,"x":7380000,"y":1044000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Liberation Sans 18"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":2052000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Palette"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":3060000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":5220000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":7380000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":3024000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Spacing"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":3060000,"y":2952000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":4680000,"y":2952000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":12},{"asset_sha256":null,"bbox":{"height":432000,"width":2880000,"x":6480000,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"0.5cm token"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":3996000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[15]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Line Weight"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":6120000,"x":3060000,"y":4140000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"line","table_dimensions":null},"node_id":"s19:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[16]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":15},{"asset_sha256":null,"bbox":{"height":396000,"width":1800000,"x":9540000,"y":3942000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[17]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"0.5pt teal rule"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":4968000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[18]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Navigation"}],"z_index":17},{"asset_sha256":null,"bbox":{"height":468000,"width":3240000,"x":3060000,"y":4860000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":["/ppt/slides/slide1.xml"],"name":"Return to Cover Internal Link","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n18","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[19]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Return to Cover"}],"z_index":18},{"asset_sha256":null,"bbox":{"height":468000,"width":3240000,"x":7380000,"y":4860000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":["/ppt/slides/slide5.xml"],"name":"Meet the Team Internal Link","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n19","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[20]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Meet the Team"}],"z_index":19},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s19:n20","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[21]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":20},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s19:n21","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[22]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"19"}],"z_index":21}],"part_name":"/ppt/slides/slide19.xml","relationships":[{"id":"rId1","target":"/ppt/slides/slide1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"},{"id":"rId2","target":"/ppt/slides/slide5.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":19},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s20:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"AcidSlide Synthesis"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1980000,"width":3780000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":9,"series_count":3,"value_point_count":9},"chart_type":"lineChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Native Line Chart","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"lineChart","table_dimensions":null},"node_id":"s20:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1620000,"width":6840000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Native Table","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":6,"rows":3}},"node_id":"s20:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Tier"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Slides"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Checks"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"SSIM"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Schema"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Status"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"L1"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"5"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"70"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"0.9999"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Ready"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"L3"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"20"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"280"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"0.9999"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Ready"}],"z_index":2},{"asset_sha256":"sha256:63cab1432d0b4d8ab581c42b26d35e02ec28c32ada2e15267fd7eac760c04007","bbox":{"height":1512000,"width":2340000,"x":4680000,"y":2880000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":0,"l":3937,"r":0,"t":0},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Approved Hero","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":518760,"width":1800000,"x":7380000,"y":2844000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Noto Sans Arabic","font_size_pt":"16","italic":null,"language":"hi-IN","rtl":true,"text":"اختبار شامل"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":396000,"width":1800000,"x":7380000,"y":3312000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Noto Sans CJK JP","font_size_pt":"16","italic":null,"language":"zh-CN","rtl":false,"text":"総合テスト"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":468000,"width":1800000,"x":576000,"y":3636000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Rotated Text","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n6","rotation_degrees":"45","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"ROTATED"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":1296000,"width":2340000,"x":2160000,"y":3528000},"children":[{"asset_sha256":null,"bbox":{"height":1116000,"width":2340000,"x":2160000,"y":3528000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1080000,"x":2160000,"y":3528000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":936000,"width":1260000,"x":2736000,"y":3708000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s20:n7.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1080000,"x":3420000,"y":3528000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Overlap Inner Group","opacity":"1","paragraph_properties":[],"parent_group_path":["s20:n7"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":288000,"width":1872000,"x":2484000,"y":4536000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s20:n7"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n7.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"2-LEVEL GROUP"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Overlap Outer Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"2-LEVEL GROUP"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":792000,"width":2520000,"x":9000000,"y":4032000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"gradFill"},"hyperlink_targets":[],"name":"Synthesis Navy Teal Gradient","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s20:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":504000,"width":2304000,"x":9108000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE GRADIENT"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":900000,"width":4500000,"x":540000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Native Bullet List","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Native structure retained"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Multilingual meaning preserved"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rendered fidelity verified"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":8100000,"y":5148000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Live Slide Number Field","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Live slide: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":""}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s20:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s20:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"20"}],"z_index":13}],"part_name":"/ppt/slides/slide20.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/media/image10.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":20}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-20.json b/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-20.json deleted file mode 100644 index acfbb00..0000000 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-20.json +++ /dev/null @@ -1 +0,0 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s20:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"AcidSlide Synthesis"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1980000,"width":3780000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":9,"series_count":3,"value_point_count":9},"chart_type":"lineChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Native Line Chart","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"lineChart","table_dimensions":null},"node_id":"s20:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1620000,"width":6840000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Native Table","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":6,"rows":3}},"node_id":"s20:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Tier"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Slides"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Checks"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"SSIM"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Schema"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Status"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"L1"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"5"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"70"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"0.9999"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Ready"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"L3"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"20"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"280"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"0.9999"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Ready"}],"z_index":2},{"asset_sha256":"sha256:63cab1432d0b4d8ab581c42b26d35e02ec28c32ada2e15267fd7eac760c04007","bbox":{"height":1512000,"width":2340000,"x":4680000,"y":2880000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":0,"l":3937,"r":0,"t":0},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Approved Hero","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":518760,"width":1800000,"x":7380000,"y":2844000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Noto Sans Arabic","font_size_pt":"16","italic":null,"language":"hi-IN","rtl":true,"text":"اختبار شامل"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":396000,"width":1800000,"x":7380000,"y":3312000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Noto Sans CJK JP","font_size_pt":"16","italic":null,"language":"zh-CN","rtl":false,"text":"総合テスト"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":468000,"width":1800000,"x":576000,"y":3636000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Rotated Text","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n6","rotation_degrees":"45","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"ROTATED"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":1296000,"width":2340000,"x":2160000,"y":3528000},"children":[{"asset_sha256":null,"bbox":{"height":1116000,"width":2340000,"x":2160000,"y":3528000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1080000,"x":2160000,"y":3528000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":936000,"width":1260000,"x":2736000,"y":3708000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s20:n7.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1080000,"x":3420000,"y":3528000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Overlap Inner Group","opacity":"1","paragraph_properties":[],"parent_group_path":["s20:n7"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":288000,"width":1872000,"x":2484000,"y":4536000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s20:n7"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n7.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"2-LEVEL GROUP"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Overlap Outer Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"2-LEVEL GROUP"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":792000,"width":2520000,"x":9000000,"y":4032000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"gradFill"},"hyperlink_targets":[],"name":"Synthesis Navy Teal Gradient","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s20:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":504000,"width":2304000,"x":9108000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE GRADIENT"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":900000,"width":4500000,"x":540000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Native Bullet List","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Native structure retained"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Multilingual meaning preserved"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rendered fidelity verified"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":8100000,"y":5148000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Live Slide Number Field","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Live slide: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":""}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s20:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s20:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"20"}],"z_index":13}],"part_name":"/ppt/slides/slide20.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/media/image10.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":20}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/grader/acidslide/__init__.py b/acidslide-v1/grader/acidslide/__init__.py deleted file mode 100644 index c142534..0000000 --- a/acidslide-v1/grader/acidslide/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -"""AcidSlide benchmark grader — ECMA-376 slide generation fidelity testing.""" - -__version__ = "1.0.0a1" diff --git a/acidslide-v1/service/acidslide_service/__init__.py b/acidslide-v1/service/acidslide_service/__init__.py deleted file mode 100644 index 8e8b290..0000000 --- a/acidslide-v1/service/acidslide_service/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -"""AcidSlide hosted service.""" - -__version__ = "1.0.0a1" diff --git a/acidslide-v1/service/compose.yaml b/acidslide-v1/service/compose.yaml deleted file mode 100644 index 8515a76..0000000 --- a/acidslide-v1/service/compose.yaml +++ /dev/null @@ -1,171 +0,0 @@ -name: acidslide - -services: - postgres: - image: postgres:17.5-alpine - restart: unless-stopped - environment: - POSTGRES_DB: acidslide - POSTGRES_USER: acidslide - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD} - volumes: - - postgres-data:/var/lib/postgresql/data - healthcheck: - test: ["CMD-SHELL", "pg_isready -U acidslide -d acidslide"] - interval: 5s - timeout: 5s - retries: 12 - networks: [private] - security_opt: [no-new-privileges:true] - - api: - build: - context: . - additional_contexts: - schemas: ../schemas - target: api - image: acidslide/service-api:${SERVICE_VERSION:-1.0.0} - restart: unless-stopped - environment: &service-environment - ACIDSLIDE_APP_ENV: production - ACIDSLIDE_DATABASE_URL: postgresql+psycopg://acidslide:${POSTGRES_PASSWORD}@postgres/acidslide - ACIDSLIDE_STORAGE_PATH: /data - ACIDSLIDE_PUBLIC_BASE_URL: https://${SITE_DOMAIN:-acidslide.dev} - ACIDSLIDE_ADMIN_API_KEY: ${ADMIN_API_KEY:?set ADMIN_API_KEY} - ACIDSLIDE_API_KEY_PEPPER: ${API_KEY_PEPPER:?set API_KEY_PEPPER} - ACIDSLIDE_ENCRYPTION_KEY: ${ENCRYPTION_KEY:?set ENCRYPTION_KEY} - ACIDSLIDE_TRUSTED_HOSTS: ${SITE_DOMAIN:-acidslide.dev},${API_DOMAIN:-api.acidslide.dev},localhost - ACIDSLIDE_GRADER_IMAGE: ${GRADER_IMAGE:-acidslide/grader:1.0.0} - ACIDSLIDE_GRADER_IMAGE_DIGEST: ${GRADER_IMAGE_DIGEST:?pin GRADER_IMAGE_DIGEST} - ACIDSLIDE_LIBREOFFICE_VERSION: ${LIBREOFFICE_VERSION:?set LIBREOFFICE_VERSION} - ACIDSLIDE_FONT_BUNDLE_HASH: ${FONT_BUNDLE_HASH:?set FONT_BUNDLE_HASH} - ACIDSLIDE_ASSET_MANIFEST_HASH: ${ASSET_MANIFEST_HASH:?set ASSET_MANIFEST_HASH} - ACIDSLIDE_ACTIVE_SCORING_MANIFEST_SHA256: ${ACTIVE_SCORING_MANIFEST_SHA256:?set ACTIVE_SCORING_MANIFEST_SHA256} - ACIDSLIDE_ACTIVE_GRADER_SOURCE_TREE_SHA256: ${ACTIVE_GRADER_SOURCE_TREE_SHA256:?set ACTIVE_GRADER_SOURCE_TREE_SHA256} - ACIDSLIDE_ACTIVE_ENVIRONMENT_ATTESTATION_SHA256: ${ACTIVE_ENVIRONMENT_ATTESTATION_SHA256:?set ACTIVE_ENVIRONMENT_ATTESTATION_SHA256} - ACIDSLIDE_ENVIRONMENT_ATTESTATION_JSON: ${ENVIRONMENT_ATTESTATION_JSON:?set ENVIRONMENT_ATTESTATION_JSON} - ACIDSLIDE_ACTIVE_GRADER_PACKAGE_SHA256: ${ACTIVE_GRADER_PACKAGE_SHA256:?set ACTIVE_GRADER_PACKAGE_SHA256} - ACIDSLIDE_ACTIVE_PROMPT_BUNDLE_SHA256: ${ACTIVE_PROMPT_BUNDLE_SHA256:?set ACTIVE_PROMPT_BUNDLE_SHA256} - ACIDSLIDE_ACTIVE_SCORED_ASSERTION_INVENTORY_SHA256: ${ACTIVE_SCORED_ASSERTION_INVENTORY_SHA256:?set ACTIVE_SCORED_ASSERTION_INVENTORY_SHA256} - ACIDSLIDE_ACTIVE_CHECKLIST_BUNDLE_SHA256: ${ACTIVE_CHECKLIST_BUNDLE_SHA256:?set ACTIVE_CHECKLIST_BUNDLE_SHA256} - ACIDSLIDE_ACTIVE_QUARANTINE_PROFILE_SHA256: ${ACTIVE_QUARANTINE_PROFILE_SHA256:?set ACTIVE_QUARANTINE_PROFILE_SHA256} - ACIDSLIDE_ACTIVE_MCE_PROFILE_SHA256: ${ACTIVE_MCE_PROFILE_SHA256:?set ACTIVE_MCE_PROFILE_SHA256} - ACIDSLIDE_ACTIVE_SCHEMA_BUNDLE_SHA256: ${ACTIVE_SCHEMA_BUNDLE_SHA256:?set ACTIVE_SCHEMA_BUNDLE_SHA256} - ACIDSLIDE_ACTIVE_SCHEMA_ROOT_MAP_SHA256: ${ACTIVE_SCHEMA_ROOT_MAP_SHA256:?set ACTIVE_SCHEMA_ROOT_MAP_SHA256} - ACIDSLIDE_ACTIVE_CANONICAL_PACKAGE_HASH_PROFILE_SHA256: ${ACTIVE_CANONICAL_PACKAGE_HASH_PROFILE_SHA256:?set ACTIVE_CANONICAL_PACKAGE_HASH_PROFILE_SHA256} - ACIDSLIDE_ACTIVE_GOLD_BYTE_SHA256: ${ACTIVE_GOLD_BYTE_SHA256:?set ACTIVE_GOLD_BYTE_SHA256} - ACIDSLIDE_ACTIVE_GOLD_MCE_RESOLVED_PACKAGE_SHA256: ${ACTIVE_GOLD_MCE_RESOLVED_PACKAGE_SHA256:?set ACTIVE_GOLD_MCE_RESOLVED_PACKAGE_SHA256} - ACIDSLIDE_ACTIVE_GOLD_CANONICAL_PACKAGE_SHA256: ${ACTIVE_GOLD_CANONICAL_PACKAGE_SHA256:?set ACTIVE_GOLD_CANONICAL_PACKAGE_SHA256} - ACIDSLIDE_SCORING_MANIFEST_PATH: /opt/acidslide/benchmark/scoring-manifest.json - ACIDSLIDE_GOLD_EVIDENCE_PATH: /opt/acidslide/benchmark/gold-evidence.json - ACIDSLIDE_GOLD_RESOLVED_PATH: /opt/acidslide/benchmark/deck/gold/acidslide-v1-gold.mce-resolved.pptx - ACIDSLIDE_CONTROL_HANDOFF_SCHEMA_PATH: /opt/acidslide/schemas/control-handoff.schema.json - ACIDSLIDE_CONTROL_VERIFICATION_KEYS_JSON: ${CONTROL_VERIFICATION_KEYS_JSON:?set CONTROL_VERIFICATION_KEYS_JSON} - ACIDSLIDE_DRIFT_CANARY_MAX_AGE_SECONDS: ${DRIFT_CANARY_MAX_AGE_SECONDS:-691200} - ACIDSLIDE_QUARANTINE_IMAGE: ${QUARANTINE_IMAGE:-acidslide/quarantine:1.0.0} - ACIDSLIDE_QUARANTINE_IMAGE_DIGEST: ${QUARANTINE_IMAGE_DIGEST:?pin QUARANTINE_IMAGE_DIGEST} - ACIDSLIDE_QUARANTINE_VERIFICATION_KEYS_JSON: ${QUARANTINE_VERIFICATION_KEYS_JSON:?set QUARANTINE_VERIFICATION_KEYS_JSON} - ACIDSLIDE_METRICS_BEARER_TOKEN: ${METRICS_BEARER_TOKEN:?set METRICS_BEARER_TOKEN} - volumes: - - private-storage:/data - - ../benchmark/scoring-manifest.json:/opt/acidslide/benchmark/scoring-manifest.json:ro - - ../benchmark/gold-evidence.json:/opt/acidslide/benchmark/gold-evidence.json:ro - - ../benchmark/deck/gold/acidslide-v1-gold.mce-resolved.pptx:/opt/acidslide/benchmark/deck/gold/acidslide-v1-gold.mce-resolved.pptx:ro - depends_on: - postgres: - condition: service_healthy - networks: [private, edge] - read_only: true - tmpfs: - - /tmp:size=64m,mode=1777 - cap_drop: [ALL] - security_opt: [no-new-privileges:true] - - worker: - build: - context: . - additional_contexts: - schemas: ../schemas - target: worker - image: acidslide/service-worker:${SERVICE_VERSION:-1.0.0} - command: ["acidslide-worker"] - restart: unless-stopped - environment: *service-environment - volumes: - - private-storage:/data - - ../benchmark/scoring-manifest.json:/opt/acidslide/benchmark/scoring-manifest.json:ro - - ../benchmark/gold-evidence.json:/opt/acidslide/benchmark/gold-evidence.json:ro - - ../benchmark/deck/gold/acidslide-v1-gold.mce-resolved.pptx:/opt/acidslide/benchmark/deck/gold/acidslide-v1-gold.mce-resolved.pptx:ro - - /var/run/docker.sock:/var/run/docker.sock - group_add: - - ${DOCKER_GID:?set DOCKER_GID} - depends_on: - api: - condition: service_healthy - networks: [private, outbound] - read_only: true - tmpfs: - - /tmp:size=64m,mode=1777 - cap_drop: [ALL] - security_opt: [no-new-privileges:true] - - quarantine: - build: - context: . - additional_contexts: - schemas: ../schemas - target: worker - image: acidslide/service-worker:${SERVICE_VERSION:-1.0.0} - command: ["acidslide-quarantine-worker"] - restart: unless-stopped - environment: - <<: *service-environment - ACIDSLIDE_QUARANTINE_SIGNING_KEY_ID: ${QUARANTINE_SIGNING_KEY_ID:?set QUARANTINE_SIGNING_KEY_ID} - ACIDSLIDE_QUARANTINE_SIGNING_PRIVATE_KEY: ${QUARANTINE_SIGNING_PRIVATE_KEY:?set QUARANTINE_SIGNING_PRIVATE_KEY} - volumes: - - private-storage:/data - - /var/run/docker.sock:/var/run/docker.sock - group_add: - - ${DOCKER_GID:?set DOCKER_GID} - depends_on: - api: - condition: service_healthy - networks: [private] - read_only: true - tmpfs: - - /tmp:size=64m,mode=1777 - cap_drop: [ALL] - security_opt: [no-new-privileges:true] - - caddy: - image: caddy:2.10.0-alpine - restart: unless-stopped - environment: - SITE_DOMAIN: ${SITE_DOMAIN:-acidslide.dev} - API_DOMAIN: ${API_DOMAIN:-api.acidslide.dev} - TLS_EMAIL: ${TLS_EMAIL:?set TLS_EMAIL} - ports: - - "80:80" - - "443:443" - - "443:443/udp" - volumes: - - ./Caddyfile:/etc/caddy/Caddyfile:ro - - caddy-data:/data - - caddy-config:/config - depends_on: [api] - networks: [edge] - cap_drop: [ALL] - cap_add: [NET_BIND_SERVICE] - security_opt: [no-new-privileges:true] - -networks: - edge: - private: - internal: true - outbound: - -volumes: - postgres-data: - private-storage: - caddy-data: - caddy-config: diff --git a/acidslide-v1/.dockerignore b/gloss-v1/.dockerignore similarity index 91% rename from acidslide-v1/.dockerignore rename to gloss-v1/.dockerignore index cb9fa6e..73c8fbe 100644 --- a/acidslide-v1/.dockerignore +++ b/gloss-v1/.dockerignore @@ -12,7 +12,7 @@ service/ # Release identities bind the OCI digest and therefore cannot be inputs to the # environment image whose digest they name. The signed release package is a -# separate read-only runtime mount selected by ACIDSLIDE_BENCHMARK_DIR. +# separate read-only runtime mount selected by GLOSS_BENCHMARK_DIR. benchmark/environment-attestation.json benchmark/export-determinism-evidence.json benchmark/gold-evidence.json diff --git a/acidslide-v1/Dockerfile b/gloss-v1/Dockerfile similarity index 82% rename from acidslide-v1/Dockerfile rename to gloss-v1/Dockerfile index 6e9fc3c..eb3fd72 100644 --- a/acidslide-v1/Dockerfile +++ b/gloss-v1/Dockerfile @@ -11,9 +11,9 @@ ENV DEBIAN_FRONTEND=noninteractive ENV LANG=en_US.UTF-8 ENV LC_ALL=en_US.UTF-8 ENV TZ=UTC -ENV UV_PYTHON_INSTALL_DIR=/opt/acidslide/python -ENV UV_PROJECT_ENVIRONMENT=/opt/acidslide/venv -ENV PATH=/opt/acidslide/venv/bin:$PATH +ENV UV_PYTHON_INSTALL_DIR=/opt/gloss/python +ENV UV_PROJECT_ENVIRONMENT=/opt/gloss/venv +ENV PATH=/opt/gloss/venv/bin:$PATH # Bootstrap the CA bundle from checksum-pinned snapshot packages, then use one # immutable Ubuntu snapshot for every APT input. The base image already pins @@ -45,26 +45,26 @@ RUN dpkg -i /tmp/openssl.deb /tmp/ca-certificates.deb \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -COPY grader/ /opt/acidslide/grader/ -COPY benchmark/ /opt/acidslide/benchmark/ -COPY schemas/ /opt/acidslide/schemas/ -COPY Dockerfile /opt/acidslide/build/Dockerfile +COPY grader/ /opt/gloss/grader/ +COPY benchmark/ /opt/gloss/benchmark/ +COPY schemas/ /opt/gloss/schemas/ +COPY Dockerfile /opt/gloss/build/Dockerfile # Fontconfig intentionally sees only the 26 content-addressed files in the # benchmark manifest, even if LibreOffice dependencies ship additional fonts. -RUN install -d /opt/acidslide/fontconfig/cache \ +RUN install -d /opt/gloss/fontconfig/cache \ && printf '%s\n' \ '' \ '' \ '' \ - ' /opt/acidslide/benchmark/fonts/files' \ - ' /opt/acidslide/fontconfig/cache' \ + ' /opt/gloss/benchmark/fonts/files' \ + ' /opt/gloss/fontconfig/cache' \ ' 0' \ '' \ - > /opt/acidslide/fontconfig/fonts.conf + > /opt/gloss/fontconfig/fonts.conf -ENV FONTCONFIG_FILE=/opt/acidslide/fontconfig/fonts.conf -ENV FONTCONFIG_PATH=/opt/acidslide/fontconfig +ENV FONTCONFIG_FILE=/opt/gloss/fontconfig/fonts.conf +ENV FONTCONFIG_PATH=/opt/gloss/fontconfig # Freeze wall-clock inputs for LibreOffice and every grader subprocess without # corrupting timeout/elapsed-time measurements based on monotonic clocks. Apply @@ -79,17 +79,17 @@ ENV PYTHONDONTWRITEBYTECODE=1 # Install the exact locked Python graph and the grader itself. RUN uv python install 3.12.11 \ - && uv venv --python 3.12.11 /opt/acidslide/venv \ - && uv sync --frozen --no-dev --no-editable --project /opt/acidslide/grader \ + && uv venv --python 3.12.11 /opt/gloss/venv \ + && uv sync --frozen --no-dev --no-editable --project /opt/gloss/grader \ && fc-cache -f -RUN /opt/acidslide/venv/bin/python - <<'PY' +RUN /opt/gloss/venv/bin/python - <<'PY' import hashlib import json import subprocess from pathlib import Path -font_root = Path("/opt/acidslide/benchmark/fonts") +font_root = Path("/opt/gloss/benchmark/fonts") manifest = json.loads((font_root / "manifest.json").read_text(encoding="utf-8")) expected = { str((font_root / entry["local_path"]).resolve()): entry["sha256"] @@ -115,4 +115,4 @@ RUN groupadd --gid 10001 grader \ USER 10001:10001 WORKDIR /workspace -ENTRYPOINT ["acidslide"] +ENTRYPOINT ["gloss"] diff --git a/acidslide-v1/VERSION b/gloss-v1/VERSION similarity index 100% rename from acidslide-v1/VERSION rename to gloss-v1/VERSION diff --git a/acidslide-v1/benchmark/README.md b/gloss-v1/benchmark/README.md similarity index 91% rename from acidslide-v1/benchmark/README.md rename to gloss-v1/benchmark/README.md index 294bbe5..d08d929 100644 --- a/acidslide-v1/benchmark/README.md +++ b/gloss-v1/benchmark/README.md @@ -1,4 +1,4 @@ -# AcidSlide v1 Benchmark Corpus +# Gloss v1 Benchmark Corpus This directory contains the public, non-gold benchmark inputs: tier maps, prompt variants, allowed assets, bundled fonts, and the weighted checklist. @@ -8,7 +8,7 @@ linked visual assertions; gold OOXML never creates a scored requirement. ## Integrity validation -From `acidslide-v1/grader/` using the locked grader environment: +From `gloss-v1/grader/` using the locked grader environment: ```bash uv run python ../benchmark/validate_corpus.py @@ -30,7 +30,7 @@ gold-derived recompression hashes. ## Generated operator mutation fixtures -From `acidslide-v1/grader/`, rebuild and execute the candidate fixture matrix: +From `gloss-v1/grader/`, rebuild and execute the candidate fixture matrix: ```bash uv run python ../benchmark/tools/build_mutation_fixtures.py diff --git a/acidslide-v1/benchmark/assets/LICENSE b/gloss-v1/benchmark/assets/LICENSE similarity index 72% rename from acidslide-v1/benchmark/assets/LICENSE rename to gloss-v1/benchmark/assets/LICENSE index 97a2638..6de386f 100644 --- a/acidslide-v1/benchmark/assets/LICENSE +++ b/gloss-v1/benchmark/assets/LICENSE @@ -1,6 +1,6 @@ -AcidSlide v1 Procedural Benchmark Assets +Gloss v1 Procedural Benchmark Assets -To the extent possible under law, the AcidSlide benchmark maintainers have +To the extent possible under law, the Gloss benchmark maintainers have waived all copyright and related or neighboring rights to the three procedural artworks in this directory. They are made available under CC0 1.0 Universal. @@ -17,5 +17,5 @@ Covered rendered files: - mirrored/cityscape.png - mirrored/texture-pattern.png -These artworks were authored specifically for AcidSlide v1 and do not include +These artworks were authored specifically for Gloss v1 and do not include third-party photographs, logos, trademarks, or generated model output. diff --git a/acidslide-v1/benchmark/assets/manifest.json b/gloss-v1/benchmark/assets/manifest.json similarity index 93% rename from acidslide-v1/benchmark/assets/manifest.json rename to gloss-v1/benchmark/assets/manifest.json index 35f2d79..45ad292 100644 --- a/acidslide-v1/benchmark/assets/manifest.json +++ b/gloss-v1/benchmark/assets/manifest.json @@ -23,7 +23,7 @@ ], "license": "CC0-1.0", "license_file": "LICENSE", - "attribution": "AcidSlide benchmark maintainers", + "attribution": "Gloss benchmark maintainers", "provenance": "hand-authored procedural SVG rendered locally with librsvg; no third-party or model-generated content" }, { @@ -48,7 +48,7 @@ ], "license": "CC0-1.0", "license_file": "LICENSE", - "attribution": "AcidSlide benchmark maintainers", + "attribution": "Gloss benchmark maintainers", "provenance": "hand-authored procedural SVG rendered locally with librsvg; no third-party or model-generated content" }, { @@ -72,7 +72,7 @@ ], "license": "CC0-1.0", "license_file": "LICENSE", - "attribution": "AcidSlide benchmark maintainers", + "attribution": "Gloss benchmark maintainers", "provenance": "hand-authored procedural SVG rendered locally with librsvg; no third-party or model-generated content" } ] diff --git a/acidslide-v1/benchmark/assets/mirrored/cityscape.png b/gloss-v1/benchmark/assets/mirrored/cityscape.png similarity index 100% rename from acidslide-v1/benchmark/assets/mirrored/cityscape.png rename to gloss-v1/benchmark/assets/mirrored/cityscape.png diff --git a/acidslide-v1/benchmark/assets/mirrored/hero-abstract.png b/gloss-v1/benchmark/assets/mirrored/hero-abstract.png similarity index 100% rename from acidslide-v1/benchmark/assets/mirrored/hero-abstract.png rename to gloss-v1/benchmark/assets/mirrored/hero-abstract.png diff --git a/acidslide-v1/benchmark/assets/mirrored/texture-pattern.png b/gloss-v1/benchmark/assets/mirrored/texture-pattern.png similarity index 100% rename from acidslide-v1/benchmark/assets/mirrored/texture-pattern.png rename to gloss-v1/benchmark/assets/mirrored/texture-pattern.png diff --git a/acidslide-v1/benchmark/assets/sources/cityscape.svg b/gloss-v1/benchmark/assets/sources/cityscape.svg similarity index 100% rename from acidslide-v1/benchmark/assets/sources/cityscape.svg rename to gloss-v1/benchmark/assets/sources/cityscape.svg diff --git a/acidslide-v1/benchmark/assets/sources/hero-abstract.svg b/gloss-v1/benchmark/assets/sources/hero-abstract.svg similarity index 100% rename from acidslide-v1/benchmark/assets/sources/hero-abstract.svg rename to gloss-v1/benchmark/assets/sources/hero-abstract.svg diff --git a/acidslide-v1/benchmark/assets/sources/texture-pattern.svg b/gloss-v1/benchmark/assets/sources/texture-pattern.svg similarity index 100% rename from acidslide-v1/benchmark/assets/sources/texture-pattern.svg rename to gloss-v1/benchmark/assets/sources/texture-pattern.svg diff --git a/acidslide-v1/benchmark/checklist/deck.yaml b/gloss-v1/benchmark/checklist/deck.yaml similarity index 98% rename from acidslide-v1/benchmark/checklist/deck.yaml rename to gloss-v1/benchmark/checklist/deck.yaml index 9031276..d121252 100644 --- a/acidslide-v1/benchmark/checklist/deck.yaml +++ b/gloss-v1/benchmark/checklist/deck.yaml @@ -35,7 +35,7 @@ "id": "deck.master-present", "scope": "deck", "tier": 1, - "title": "AcidSlide master exists", + "title": "Gloss master exists", "description": "At least one native slide master must own the shared background and footer elements.", "kind": "master-layout", "severity": "critical", @@ -85,8 +85,8 @@ "status": "complete", "mode": "named_selector", "slides": [], - "selector_id": "acidslide.affected-slides.non-bundled-font.v1", - "selector_sha256": "sha256:8cf69d05eb33b14a0f72ef56ca0551f0eda84748a6bb3aaa8e56f46ddb7a10f1" + "selector_id": "gloss.affected-slides.non-bundled-font.v1", + "selector_sha256": "sha256:5bfb1f0992a59d6ae8db4fe83d27ec8f8dc3f0ed7b3a4b0a9d3f7c0980af0c14" } }, "assertion_id": "deck.assert-font-policy", @@ -127,8 +127,8 @@ "status": "complete", "mode": "named_selector", "slides": [], - "selector_id": "acidslide.affected-slides.notes-comments.v1", - "selector_sha256": "sha256:8a1a47d7df727a1c1919ef463d638332f0b6786b05f783ae67e7039e958ab45c" + "selector_id": "gloss.affected-slides.notes-comments.v1", + "selector_sha256": "sha256:92d94c284e6352ee4128c9635856bbc52b14cdaba7d7f240f2f0fda69470962c" } }, "assertion_id": "deck.assert-no-notes", diff --git a/acidslide-v1/benchmark/checklist/slides/slide-01.yaml b/gloss-v1/benchmark/checklist/slides/slide-01.yaml similarity index 99% rename from acidslide-v1/benchmark/checklist/slides/slide-01.yaml rename to gloss-v1/benchmark/checklist/slides/slide-01.yaml index f4446cc..41fb45f 100644 --- a/acidslide-v1/benchmark/checklist/slides/slide-01.yaml +++ b/gloss-v1/benchmark/checklist/slides/slide-01.yaml @@ -5,7 +5,7 @@ "slide": 1, "tier": 1, "title": "Required key text is present", - "description": "The slide must preserve the exact key text `AcidSlide v1` as editable text.", + "description": "The slide must preserve the exact key text `Gloss v1` as editable text.", "kind": "text", "severity": "critical", "source_of_truth": "ooxml", @@ -13,7 +13,7 @@ "method": "text_match", "selector": "slide_text", "expectation": { - "contains": "AcidSlide v1" + "contains": "Gloss v1" } }, "assertion_id": "slide-01.assert-key-text", diff --git a/acidslide-v1/benchmark/checklist/slides/slide-02.yaml b/gloss-v1/benchmark/checklist/slides/slide-02.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-02.yaml rename to gloss-v1/benchmark/checklist/slides/slide-02.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-03.yaml b/gloss-v1/benchmark/checklist/slides/slide-03.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-03.yaml rename to gloss-v1/benchmark/checklist/slides/slide-03.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-04.yaml b/gloss-v1/benchmark/checklist/slides/slide-04.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-04.yaml rename to gloss-v1/benchmark/checklist/slides/slide-04.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-05.yaml b/gloss-v1/benchmark/checklist/slides/slide-05.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-05.yaml rename to gloss-v1/benchmark/checklist/slides/slide-05.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-06.yaml b/gloss-v1/benchmark/checklist/slides/slide-06.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-06.yaml rename to gloss-v1/benchmark/checklist/slides/slide-06.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-07.yaml b/gloss-v1/benchmark/checklist/slides/slide-07.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-07.yaml rename to gloss-v1/benchmark/checklist/slides/slide-07.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-08.yaml b/gloss-v1/benchmark/checklist/slides/slide-08.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-08.yaml rename to gloss-v1/benchmark/checklist/slides/slide-08.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-09.yaml b/gloss-v1/benchmark/checklist/slides/slide-09.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-09.yaml rename to gloss-v1/benchmark/checklist/slides/slide-09.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-10.yaml b/gloss-v1/benchmark/checklist/slides/slide-10.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-10.yaml rename to gloss-v1/benchmark/checklist/slides/slide-10.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-11.yaml b/gloss-v1/benchmark/checklist/slides/slide-11.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-11.yaml rename to gloss-v1/benchmark/checklist/slides/slide-11.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-12.yaml b/gloss-v1/benchmark/checklist/slides/slide-12.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-12.yaml rename to gloss-v1/benchmark/checklist/slides/slide-12.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-13.yaml b/gloss-v1/benchmark/checklist/slides/slide-13.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-13.yaml rename to gloss-v1/benchmark/checklist/slides/slide-13.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-14.yaml b/gloss-v1/benchmark/checklist/slides/slide-14.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-14.yaml rename to gloss-v1/benchmark/checklist/slides/slide-14.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-15.yaml b/gloss-v1/benchmark/checklist/slides/slide-15.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-15.yaml rename to gloss-v1/benchmark/checklist/slides/slide-15.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-16.yaml b/gloss-v1/benchmark/checklist/slides/slide-16.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-16.yaml rename to gloss-v1/benchmark/checklist/slides/slide-16.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-17.yaml b/gloss-v1/benchmark/checklist/slides/slide-17.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-17.yaml rename to gloss-v1/benchmark/checklist/slides/slide-17.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-18.yaml b/gloss-v1/benchmark/checklist/slides/slide-18.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-18.yaml rename to gloss-v1/benchmark/checklist/slides/slide-18.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-19.yaml b/gloss-v1/benchmark/checklist/slides/slide-19.yaml similarity index 100% rename from acidslide-v1/benchmark/checklist/slides/slide-19.yaml rename to gloss-v1/benchmark/checklist/slides/slide-19.yaml diff --git a/acidslide-v1/benchmark/checklist/slides/slide-20.yaml b/gloss-v1/benchmark/checklist/slides/slide-20.yaml similarity index 98% rename from acidslide-v1/benchmark/checklist/slides/slide-20.yaml rename to gloss-v1/benchmark/checklist/slides/slide-20.yaml index b80393b..d1827d3 100644 --- a/acidslide-v1/benchmark/checklist/slides/slide-20.yaml +++ b/gloss-v1/benchmark/checklist/slides/slide-20.yaml @@ -5,7 +5,7 @@ "slide": 20, "tier": 3, "title": "Required key text is present", - "description": "The slide must preserve the exact key text `AcidSlide Synthesis` as editable text.", + "description": "The slide must preserve the exact key text `Gloss Synthesis` as editable text.", "kind": "text", "severity": "critical", "source_of_truth": "ooxml", @@ -13,7 +13,7 @@ "method": "text_match", "selector": "slide_text", "expectation": { - "contains": "AcidSlide Synthesis" + "contains": "Gloss Synthesis" } }, "assertion_id": "slide-20.assert-key-text", diff --git a/acidslide-v1/benchmark/comparative-v1/README.md b/gloss-v1/benchmark/comparative-v1/README.md similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/README.md rename to gloss-v1/benchmark/comparative-v1/README.md index c96e29b..b35a6a6 100644 --- a/acidslide-v1/benchmark/comparative-v1/README.md +++ b/gloss-v1/benchmark/comparative-v1/README.md @@ -22,7 +22,7 @@ Every generation record is labeled: From the repository root: ```bash -./acidslide-v1/benchmark/comparative-v1/reproduce.sh +./gloss-v1/benchmark/comparative-v1/reproduce.sh ``` The command regenerates all 12 editable 20-slide decks, builds the pinned @@ -42,7 +42,7 @@ recomputes every published metric. Metrics: -- **Local fidelity** — AcidSlide’s severity-weighted artifact score. +- **Local fidelity** — Gloss’s severity-weighted artifact score. - **Visual SSIM** — mean full-slide similarity to the gold renders. - **Native pass** — severity-weighted checklist pass rate with every `visual_ssim` check excluded. diff --git a/gloss-v1/benchmark/comparative-v1/cohort.json b/gloss-v1/benchmark/comparative-v1/cohort.json new file mode 100644 index 0000000..1184e82 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/cohort.json @@ -0,0 +1,33 @@ +{ + "disclosure": { + "attribution": "repository-owned path; no model attribution", + "comparison_scope": "reproducible workflow baselines, not model rankings", + "verification_label": "local artifact score; self-reported" + }, + "grader_revision": "unavailable", + "provenance": { + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111" + }, + "scoring_manifest": { + "bundle_hashes": { + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3" + }, + "disclosure": { + "attribution": "repository-owned path; no model attribution", + "comparison_scope": "reproducible workflow baselines, not model rankings", + "verification_label": "local artifact score; self-reported" + }, + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "schema_version": "1.0" + } +} diff --git a/acidslide-v1/benchmark/comparative-v1/generate_baselines.py b/gloss-v1/benchmark/comparative-v1/generate_baselines.py similarity index 99% rename from acidslide-v1/benchmark/comparative-v1/generate_baselines.py rename to gloss-v1/benchmark/comparative-v1/generate_baselines.py index e4c0651..20d3a95 100644 --- a/acidslide-v1/benchmark/comparative-v1/generate_baselines.py +++ b/gloss-v1/benchmark/comparative-v1/generate_baselines.py @@ -248,7 +248,7 @@ def __init__(self, spec: PathSpec, run: int, seed: int, root: Path) -> None: ) self.prs.core_properties.author = "Gloss contributors" self.prs.core_properties.keywords = ( - "Gloss, AcidSlide, deterministic baseline, editable PowerPoint" + "Gloss, Gloss, deterministic baseline, editable PowerPoint" ) self.assets = root / "assets" / "mirrored" @@ -292,7 +292,7 @@ def footer(self, slide: object, number: int) -> None: ) line.line.color.rgb = rgb(COLORS["teal"]) line.line.width = Pt(0.5) - self.text(slide, "ACIDSLIDE", 0.6, 17.62, 4, 0.45, 8, color=COLORS["white"]) + self.text(slide, "GLOSS", 0.6, 17.62, 4, 0.45, 8, color=COLORS["white"]) number_box = self.text( slide, "", @@ -564,7 +564,7 @@ def slide_01(self) -> None: slide = self.add_slide(0) for placeholder in slide.placeholders: if placeholder.placeholder_format.type == 3: - placeholder.text = "AcidSlide v1" + placeholder.text = "Gloss v1" self.style_text( placeholder.text_frame, 44, @@ -1016,7 +1016,7 @@ def slide_12(self) -> None: color=COLORS["teal"], italic=True, ) - self.text(slide, "AcidSlide Benchmark v1", 3, 10, 12, 1.4, 18) + self.text(slide, "Gloss Benchmark v1", 3, 10, 12, 1.4, 18) self.text( slide, "← Footer from master placeholder", @@ -1096,7 +1096,7 @@ def slide_14(self) -> None: "دقة العرض", "سلامة البنية", "The الذكاء الاصطناعي revolution", - "الإصدار AcidSlide v1", + "الإصدار Gloss v1", ] left = self.text( slide, @@ -1301,7 +1301,7 @@ def slide_19(self) -> None: ) def slide_20(self) -> None: - slide = self.add_slide(6, "AcidSlide Synthesis") + slide = self.add_slide(6, "Gloss Synthesis") categories = ["L1", "L2", "L3"] if self.spec.native_objects: self.chart( diff --git a/gloss-v1/benchmark/comparative-v1/manifest.json b/gloss-v1/benchmark/comparative-v1/manifest.json new file mode 100644 index 0000000..1c92f48 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/manifest.json @@ -0,0 +1,257 @@ +{ + "cohort_sha256": "sha256:bd6134bbfc25770ed325ed8d0965a7b5b82fef0796b75a2fc1cdc866f081b812", + "disclosure": { + "attribution": "repository-owned path; no model attribution", + "comparison_scope": "reproducible workflow baselines, not model rankings", + "verification_label": "local artifact score; self-reported" + }, + "reproduction_command": "./gloss-v1/benchmark/comparative-v1/reproduce.sh", + "runs": [ + { + "artifacts": { + "artifact-context.json": "sha256:0220918d2a1c43f05f3ad91d1f901995465fad3be45b06fa8004137b865b201f", + "deck.pptx": "sha256:a87dad5dc8b87e28092b8812913ca994f8b29d988fb293d20667ae92bb9f3076", + "generation.json": "sha256:9d90bb3fc2a81f6ca33aa949f336654703774760f32cae3e71587384d226f268", + "report.json": "sha256:c2151c8bf3346f3d1c2dd82dc194fd0f6ec635da14379007efb553d323da61dd" + }, + "metrics": { + "local_fidelity_percent": 67.68, + "mean_visual_ssim_percent": 85.08, + "native_weight_passed": 379, + "native_weight_total": 407, + "native_weighted_pass_percent": 93.12, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "native-precise", + "run": 1, + "seed": 1103 + }, + { + "artifacts": { + "artifact-context.json": "sha256:0caa2a28fc8275e9f85c0082a48039438cf8c697f051c76d147e02bde4397695", + "deck.pptx": "sha256:34d4ffe47bfbe3269e576404c9fa628545ca1ffa0d92f8e97c1415978aedae29", + "generation.json": "sha256:89c52949a2e1a9519831bb9b8236a2c9ba72576c5a3e8f226f336a174712289d", + "report.json": "sha256:125bfafe20811a7aa7617a9f65eb75671978a585b15962a8d5ff4f60b6b689fb" + }, + "metrics": { + "local_fidelity_percent": 67.68, + "mean_visual_ssim_percent": 85.08, + "native_weight_passed": 379, + "native_weight_total": 407, + "native_weighted_pass_percent": 93.12, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "native-precise", + "run": 2, + "seed": 2207 + }, + { + "artifacts": { + "artifact-context.json": "sha256:3e58665e6fc19a41a2bb18f8497e6225a0b9b571ac09bd8f91951a95478127e8", + "deck.pptx": "sha256:610297e54513ad148f420513affff524e9215925dd3d1ab9cc77bfbdb1c8613b", + "generation.json": "sha256:e19c4f776a22570dcc2c12794d24d876e73fbec5af232ae3686aad0d6c8f518d", + "report.json": "sha256:ea27e1d38d7132071ca628b86b8df7e28d2bc7c02ba01a7ba61558a60831bb96" + }, + "metrics": { + "local_fidelity_percent": 67.68, + "mean_visual_ssim_percent": 85.08, + "native_weight_passed": 379, + "native_weight_total": 407, + "native_weighted_pass_percent": 93.12, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "native-precise", + "run": 3, + "seed": 3301 + }, + { + "artifacts": { + "artifact-context.json": "sha256:90a4365016888ff1489c1570942c4e16cc89d940000b26b48854c3ef9dae7929", + "deck.pptx": "sha256:ba9d289918a65b7f68273e8a99a6e273a756a84561e4c67e0ad7b58075cd12f5", + "generation.json": "sha256:13c4381fa64056b24811ab72d26e70d24ddfabece65167ab4f61e92d704303ad", + "report.json": "sha256:35b79f0b3e22840ff36ce3adc49ef25fa174a9f1a7fe7bd94ff7c00748f18c3c" + }, + "metrics": { + "local_fidelity_percent": 67.68, + "mean_visual_ssim_percent": 85.07, + "native_weight_passed": 379, + "native_weight_total": 407, + "native_weighted_pass_percent": 93.12, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "native-fast", + "run": 1, + "seed": 1103 + }, + { + "artifacts": { + "artifact-context.json": "sha256:4d1493074f568601cf160c841696e1102b44ddbbd7e75215060919614a883f2e", + "deck.pptx": "sha256:834ba91fe8f2a46bcd1cab774d0ed41382050dcd40069cd9df42331c168e0ac3", + "generation.json": "sha256:cf085e1d8b294ef60d017ead28cf003364a89bda6d802f53677700349dac6432", + "report.json": "sha256:998463b818faaa34eae63b033bd09486b089d80b8360a6250cc5a6f871bb8c1a" + }, + "metrics": { + "local_fidelity_percent": 67.68, + "mean_visual_ssim_percent": 85.07, + "native_weight_passed": 379, + "native_weight_total": 407, + "native_weighted_pass_percent": 93.12, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "native-fast", + "run": 2, + "seed": 2207 + }, + { + "artifacts": { + "artifact-context.json": "sha256:e16f5c9a3b12b142dca0e021ec67ca000d37890b7293db1234bf129b5f49f905", + "deck.pptx": "sha256:d8620055d77810977724a665ff23185fd67788139a18b68a14c2deb861e405d3", + "generation.json": "sha256:ff0524bc31fd2dcf0db7002f21488e57df725d2e6ff750f582299952c01a0baf", + "report.json": "sha256:a7bb91b6093f0e9445d090b62a95d5d7880454956e078322aa2e15b4eaaf0b0b" + }, + "metrics": { + "local_fidelity_percent": 67.68, + "mean_visual_ssim_percent": 85.07, + "native_weight_passed": 379, + "native_weight_total": 407, + "native_weighted_pass_percent": 93.12, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "native-fast", + "run": 3, + "seed": 3301 + }, + { + "artifacts": { + "artifact-context.json": "sha256:3817220b6d83e60946fd6a124e8ddbaa9e23c572eb43240a8b65a51340898597", + "deck.pptx": "sha256:e2b42182ffefe25080a60f0a5389796a23430cbc134fd124afb50d894d00e494", + "generation.json": "sha256:900a65d7c195b125931004024fa10e71b299799f4d6f75ab86adad7462fc7ded", + "report.json": "sha256:99b225a8498369515eea0ca85b804f9b247b81a4f62d8780101e5e7469e872e4" + }, + "metrics": { + "local_fidelity_percent": 62.32, + "mean_visual_ssim_percent": 85.27, + "native_weight_passed": 349, + "native_weight_total": 407, + "native_weighted_pass_percent": 85.75, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "visual-precise", + "run": 1, + "seed": 1103 + }, + { + "artifacts": { + "artifact-context.json": "sha256:2da7acdc2befad0ebfff5fb25aa65a9c510d550d1af55891e4df857acf1fd2c6", + "deck.pptx": "sha256:858055f3d91fcfcff9e80ef9f9c32c8af96107fedafb0acb4137fbc455fc36b4", + "generation.json": "sha256:7444101f01fd698b06ea6079c5efba10f2159ff27400e0aac9e1da1b9c9f5c5d", + "report.json": "sha256:9a53392367db5bacb459207ce79a63f3e28cc4b7241778b6ca259d6d21e01d3b" + }, + "metrics": { + "local_fidelity_percent": 62.32, + "mean_visual_ssim_percent": 85.27, + "native_weight_passed": 349, + "native_weight_total": 407, + "native_weighted_pass_percent": 85.75, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "visual-precise", + "run": 2, + "seed": 2207 + }, + { + "artifacts": { + "artifact-context.json": "sha256:964462cdbc9bd489d1436dc5919581288cee42389d4e7319e05003b8cff6c961", + "deck.pptx": "sha256:4aa23e14982fd1607cc6cd9da6a3c8bd66158db0eaeb2e2ade9a43b6ac7a7c77", + "generation.json": "sha256:ac5c7821a4243998180841e18fa35e31f8c69dc1a13e0f8270620f5e6b5dd54c", + "report.json": "sha256:035155369c9fe250f6d9b83bec3a2358a2d4c403184feb4ed81d711bec343107" + }, + "metrics": { + "local_fidelity_percent": 62.32, + "mean_visual_ssim_percent": 85.27, + "native_weight_passed": 349, + "native_weight_total": 407, + "native_weighted_pass_percent": 85.75, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "visual-precise", + "run": 3, + "seed": 3301 + }, + { + "artifacts": { + "artifact-context.json": "sha256:75c1ea320e3b9c8475d61981fd724c6dc187089b512147bdc806d360a25cbe01", + "deck.pptx": "sha256:46265d3dbc43335e8c72cbc9c13d47b00ce56f88bf9be959d6a98df9e4b94aeb", + "generation.json": "sha256:e3b1802f2f2dc888dca0aafcae72226f9a38d682457efea289b93737031a3507", + "report.json": "sha256:f0c93c9f7e34da42bdf9a8c4438fc8d94d7b101a12e6d5d7364af0d9920f9555" + }, + "metrics": { + "local_fidelity_percent": 62.32, + "mean_visual_ssim_percent": 85.38, + "native_weight_passed": 349, + "native_weight_total": 407, + "native_weighted_pass_percent": 85.75, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "visual-fast", + "run": 1, + "seed": 1103 + }, + { + "artifacts": { + "artifact-context.json": "sha256:a2f3d289d7b7d99c10d24dae605df875dfb3c1943f1316a4d518ff9f8f64aba6", + "deck.pptx": "sha256:c95ddd780e4a95fb88bf8af6d0b3ad00e3d3cb69b51fee5345d001899870e1dc", + "generation.json": "sha256:12b8bb9dc6d2d9345cf2f64e89b6444e0856b17a4f22d4dae0c1ab9517dac23d", + "report.json": "sha256:b98a8114d74a1f6b84a41a9f28c052b9ecc030e2142b19527787e681fcd32190" + }, + "metrics": { + "local_fidelity_percent": 62.32, + "mean_visual_ssim_percent": 85.38, + "native_weight_passed": 349, + "native_weight_total": 407, + "native_weighted_pass_percent": 85.75, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "visual-fast", + "run": 2, + "seed": 2207 + }, + { + "artifacts": { + "artifact-context.json": "sha256:cc5b3f1538e84f53cff5e4ed2aab74a667bd864777b9bb528a509a1b3dc4a2d0", + "deck.pptx": "sha256:571d66f4c0f8c028e59acf928cf5e9775dc0dd9a8f64233bbf5adf262c0f9584", + "generation.json": "sha256:bf2918b5192b870e9ff73d19e607593c233733fdd00fc2eb1c720312324949cf", + "report.json": "sha256:d2ed6b71edf9a2f5a98b93984173ec4f1132b00dd0d09c0273459a74eea3499c" + }, + "metrics": { + "local_fidelity_percent": 62.32, + "mean_visual_ssim_percent": 85.38, + "native_weight_passed": 349, + "native_weight_total": 407, + "native_weighted_pass_percent": 85.75, + "scoring_completed": true, + "verification_complete": true + }, + "path_id": "visual-fast", + "run": 3, + "seed": 3301 + } + ], + "schema_version": "1.0", + "source_hashes": { + "generate_baselines.py": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", + "score_bundle.py": "sha256:7a18fe1174faac564d7bb4c87f4775d68c22e6ff64e2a43e532e7494cf3bf818" + }, + "summary_sha256": "sha256:92ab262142cf99be53bf98a39065891a9b894ad91bedfe0ab07b596ae42e1b1a" +} diff --git a/acidslide-v1/benchmark/comparative-v1/reproduce.sh b/gloss-v1/benchmark/comparative-v1/reproduce.sh similarity index 57% rename from acidslide-v1/benchmark/comparative-v1/reproduce.sh rename to gloss-v1/benchmark/comparative-v1/reproduce.sh index 40e284b..5acc7b5 100755 --- a/acidslide-v1/benchmark/comparative-v1/reproduce.sh +++ b/gloss-v1/benchmark/comparative-v1/reproduce.sh @@ -1,20 +1,20 @@ #!/bin/sh set -eu -REPO_ROOT=$(cd -- "$(dirname -- "$0")/../../../.." && pwd) -COMPARATIVE_ROOT="$REPO_ROOT/acidslide-v1/benchmark/comparative-v1" -IMAGE_TAG="acidslide-v1:comparative-v1" +REPO_ROOT=$(cd -- "$(dirname -- "$0")/../../.." && pwd) +COMPARATIVE_ROOT="$REPO_ROOT/gloss-v1/benchmark/comparative-v1" +IMAGE_TAG="gloss-v1:comparative-v1" cd "$REPO_ROOT" uv run "$COMPARATIVE_ROOT/generate_baselines.py" -docker build --platform linux/amd64 --provenance=false -t "$IMAGE_TAG" acidslide-v1 +docker build --platform linux/amd64 --provenance=false -t "$IMAGE_TAG" gloss-v1 IMAGE_DIGEST=$(docker image inspect "$IMAGE_TAG" --format '{{.Id}}') docker run --rm \ --platform linux/amd64 \ - --entrypoint /opt/acidslide/venv/bin/python \ + --entrypoint /opt/gloss/venv/bin/python \ --volume "$REPO_ROOT:/workspace" \ --workdir /workspace \ "$IMAGE_TAG" \ - /workspace/acidslide-v1/benchmark/comparative-v1/score_bundle.py \ + /workspace/gloss-v1/benchmark/comparative-v1/score_bundle.py \ --image-digest "$IMAGE_DIGEST" uv run "$COMPARATIVE_ROOT/verify_bundle.py" diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-context.json new file mode 100644 index 0000000..40bef03 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:4bf7f86bbe2fb666d94ff3eeb3c0640418ede135d91e3726b6886b9d4b1a44ea", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:13c4381fa64056b24811ab72d26e70d24ddfabece65167ab4f61e92d704303ad", + "generation_seed": "1103", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "canonical", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:ba9d289918a65b7f68273e8a99a6e273a756a84561e4c67e0ad7b58075cd12f5", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-sha256.json new file mode 100644 index 0000000..5bbd43f --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:90a4365016888ff1489c1570942c4e16cc89d940000b26b48854c3ef9dae7929", + "deck.pptx": "sha256:ba9d289918a65b7f68273e8a99a6e273a756a84561e4c67e0ad7b58075cd12f5", + "generation.json": "sha256:13c4381fa64056b24811ab72d26e70d24ddfabece65167ab4f61e92d704303ad", + "report.json": "sha256:35b79f0b3e22840ff36ce3adc49ef25fa174a9f1a7fe7bd94ff7c00748f18c3c" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/deck.pptx similarity index 84% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/deck.pptx index ace123c..3867f4d 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/generation.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/generation.json index 7c2350a..35aebe8 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/generation.json @@ -3,7 +3,7 @@ "full_detail": false, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": true, "path_id": "native-fast", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/report.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/report.json rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/report.json index b597b00..98a214f 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-1/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:4d9ca6b255237129f2a9329c1cc3597415b2a2bcd46c1451ae274b69e0665479", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:4bf7f86bbe2fb666d94ff3eeb3c0640418ede135d91e3726b6886b9d4b1a44ea", "gold_duplicate_check": "clear", "generation_seed": "1103", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "canonical", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:e6c484b01cdebf049c692e9bb0f2e491b8338cfc0e5a6ee324c953117f501464", - "submission_sha256": "sha256:0e6a0785641d5fb902e96babc1ba2c94f4e1d9498651744c92e4b5a18102ba15", + "generation_profile_sha256": "sha256:13c4381fa64056b24811ab72d26e70d24ddfabece65167ab4f61e92d704303ad", + "submission_sha256": "sha256:ba9d289918a65b7f68273e8a99a6e273a756a84561e4c67e0ad7b58075cd12f5", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 16.68, + "grading_duration_seconds": 15.02, "fidelity_score": 0.6768, "campaign_contribution": 0.0, "passed_items": 160, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:fba148613d2283384d4428c5d15c9ca6e1a0c000ccc554107ef4a0eb62c127f2", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 328533, - "grading_duration_seconds": 16.68, + "submission_file_size_bytes": 328334, + "grading_duration_seconds": 15.02, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110385021610173, + "visual_ssim": 0.911626631685004, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8420054196721699, + "visual_ssim": 0.8404367678059926, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6374918755747534, + "visual_ssim": 0.6380740335459888, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952277325501211, + "visual_ssim": 0.8958156771365705, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957672, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.862667585596799, + "visual_ssim": 0.8632562178307582, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334180228308551, + "visual_ssim": 0.9356395989611483, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7704820584664261, + "visual_ssim": 0.7710706907003854, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689520895779883, + "visual_ssim": 0.8704056499837995, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870406 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870406 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870406 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870406 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870406 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8923779177780836, + "visual_ssim": 0.8930957448018472, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892378 (threshold=0.9999)" + "details": "SSIM=0.893096 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892378 (threshold=0.9999)" + "details": "SSIM=0.893096 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892378 (threshold=0.9999)" + "details": "SSIM=0.893096 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892378 (threshold=0.9999)" + "details": "SSIM=0.893096 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892378 (threshold=0.9999)" + "details": "SSIM=0.893096 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7082443549373099, + "visual_ssim": 0.7132452422400472, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-context.json new file mode 100644 index 0000000..f5acd01 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:d1add8069de97d07cc82e423d9f283cd5c6705c2a3de9fe52a751743f010a82a", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:cf085e1d8b294ef60d017ead28cf003364a89bda6d802f53677700349dac6432", + "generation_seed": "2207", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "canonical", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:834ba91fe8f2a46bcd1cab774d0ed41382050dcd40069cd9df42331c168e0ac3", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-sha256.json new file mode 100644 index 0000000..7818b3e --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:4d1493074f568601cf160c841696e1102b44ddbbd7e75215060919614a883f2e", + "deck.pptx": "sha256:834ba91fe8f2a46bcd1cab774d0ed41382050dcd40069cd9df42331c168e0ac3", + "generation.json": "sha256:cf085e1d8b294ef60d017ead28cf003364a89bda6d802f53677700349dac6432", + "report.json": "sha256:998463b818faaa34eae63b033bd09486b089d80b8360a6250cc5a6f871bb8c1a" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/deck.pptx similarity index 84% rename from acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/deck.pptx index b1d0e54..6942c46 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/generation.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/generation.json index c8d6117..ae26596 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/generation.json @@ -3,7 +3,7 @@ "full_detail": false, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": true, "path_id": "native-fast", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/report.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/report.json rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/report.json index fb69dd3..97033fe 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-2/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:834e2d51a963f99bcbb89fce7cde4d1203e90f54083a3f8fe23f7ae0bc5cd7cb", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:d1add8069de97d07cc82e423d9f283cd5c6705c2a3de9fe52a751743f010a82a", "gold_duplicate_check": "clear", "generation_seed": "2207", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "canonical", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:affdd966a87e28ba5855112ffd284e3dc465de838f7b46c10611f67e7e6f4414", - "submission_sha256": "sha256:3716fa3bb950f2c8457b46e7b4b7cfd92bd28c9ddad20d3e370487666baf49be", + "generation_profile_sha256": "sha256:cf085e1d8b294ef60d017ead28cf003364a89bda6d802f53677700349dac6432", + "submission_sha256": "sha256:834ba91fe8f2a46bcd1cab774d0ed41382050dcd40069cd9df42331c168e0ac3", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 16.25, + "grading_duration_seconds": 15.05, "fidelity_score": 0.6768, "campaign_contribution": 0.0, "passed_items": 160, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:fba148613d2283384d4428c5d15c9ca6e1a0c000ccc554107ef4a0eb62c127f2", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 328529, - "grading_duration_seconds": 16.25, + "submission_file_size_bytes": 328340, + "grading_duration_seconds": 15.05, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110379994510446, + "visual_ssim": 0.9116271343949766, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8420054196721699, + "visual_ssim": 0.8404367678059926, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6374854013120296, + "visual_ssim": 0.6380740335459888, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952270449026112, + "visual_ssim": 0.8958156771365705, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.8626645772782932, + "visual_ssim": 0.8632532095122523, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334180228308551, + "visual_ssim": 0.9356524881700334, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935652 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935652 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935652 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935652 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935652 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7704820584664261, + "visual_ssim": 0.7710706907003854, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689520895779883, + "visual_ssim": 0.8703983486183575, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870398 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870398 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870398 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870398 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870398 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.89237179791444, + "visual_ssim": 0.8930009262886189, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.893001 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.893001 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.893001 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.893001 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.893001 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7082443549373099, + "visual_ssim": 0.7132452422400472, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-context.json new file mode 100644 index 0000000..c721c45 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:d5ee000c3279a097dc2c1b4941d7dfeea41c55f36f5cb7b1db15c185f4de4711", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:ff0524bc31fd2dcf0db7002f21488e57df725d2e6ff750f582299952c01a0baf", + "generation_seed": "3301", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "canonical", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:d8620055d77810977724a665ff23185fd67788139a18b68a14c2deb861e405d3", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-sha256.json new file mode 100644 index 0000000..2b2f420 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:e16f5c9a3b12b142dca0e021ec67ca000d37890b7293db1234bf129b5f49f905", + "deck.pptx": "sha256:d8620055d77810977724a665ff23185fd67788139a18b68a14c2deb861e405d3", + "generation.json": "sha256:ff0524bc31fd2dcf0db7002f21488e57df725d2e6ff750f582299952c01a0baf", + "report.json": "sha256:a7bb91b6093f0e9445d090b62a95d5d7880454956e078322aa2e15b4eaaf0b0b" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/deck.pptx similarity index 84% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/deck.pptx index 58d14a6..bf9b1f1 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/generation.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/generation.json index cf54952..b3fb0d3 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/generation.json @@ -3,7 +3,7 @@ "full_detail": false, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": true, "path_id": "native-fast", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/report.json b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/report.json rename to gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/report.json index 59a0316..42e8e81 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-fast/run-3/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:a30ee4f8c1b93a0a6bb81237cc905e2bb9f558a86d129dfb529acdc584ea3ba3", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:d5ee000c3279a097dc2c1b4941d7dfeea41c55f36f5cb7b1db15c185f4de4711", "gold_duplicate_check": "clear", "generation_seed": "3301", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "canonical", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:6274fb3454ff5ba46658d2ad566c51c9fc7f3b71c2f31b7b0ad0a8e6171d6fe9", - "submission_sha256": "sha256:d670d5f2bb9c27e9a98a9c4a53785ab7c8e985344cc2d38163c447476a142c31", + "generation_profile_sha256": "sha256:ff0524bc31fd2dcf0db7002f21488e57df725d2e6ff750f582299952c01a0baf", + "submission_sha256": "sha256:d8620055d77810977724a665ff23185fd67788139a18b68a14c2deb861e405d3", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 18.36, + "grading_duration_seconds": 15.03, "fidelity_score": 0.6768, "campaign_contribution": 0.0, "passed_items": 160, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:fba148613d2283384d4428c5d15c9ca6e1a0c000ccc554107ef4a0eb62c127f2", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 328534, - "grading_duration_seconds": 18.36, + "submission_file_size_bytes": 328349, + "grading_duration_seconds": 15.03, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110379994510446, + "visual_ssim": 0.911626631685004, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8420054196721699, + "visual_ssim": 0.8404367678059926, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.842005 (threshold=0.9999)" + "details": "SSIM=0.840437 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6374918755747534, + "visual_ssim": 0.6380805078087127, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952270449026112, + "visual_ssim": 0.8958163647840806, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800717364435249, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780072 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780072 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780072 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780072 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780072 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.862667585596799, + "visual_ssim": 0.8632562178307582, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334246877879272, + "visual_ssim": 0.935639537683642, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933425 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933425 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933425 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933425 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933425 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7704820584664261, + "visual_ssim": 0.7710706907003854, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689520895779883, + "visual_ssim": 0.8704232628396018, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870423 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870423 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870423 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870423 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870423 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8923700483634412, + "visual_ssim": 0.8930115853365089, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892370 (threshold=0.9999)" + "details": "SSIM=0.893012 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892370 (threshold=0.9999)" + "details": "SSIM=0.893012 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892370 (threshold=0.9999)" + "details": "SSIM=0.893012 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892370 (threshold=0.9999)" + "details": "SSIM=0.893012 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892370 (threshold=0.9999)" + "details": "SSIM=0.893012 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7082443549373099, + "visual_ssim": 0.7132452422400472, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8496" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8507" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-context.json new file mode 100644 index 0000000..6227c4b --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:b02db630bfa149f7c4d536539ed99d6300798857c52da99af075824ee5820835", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:9d90bb3fc2a81f6ca33aa949f336654703774760f32cae3e71587384d226f268", + "generation_seed": "1103", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "canonical", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:a87dad5dc8b87e28092b8812913ca994f8b29d988fb293d20667ae92bb9f3076", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-sha256.json new file mode 100644 index 0000000..c130429 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:0220918d2a1c43f05f3ad91d1f901995465fad3be45b06fa8004137b865b201f", + "deck.pptx": "sha256:a87dad5dc8b87e28092b8812913ca994f8b29d988fb293d20667ae92bb9f3076", + "generation.json": "sha256:9d90bb3fc2a81f6ca33aa949f336654703774760f32cae3e71587384d226f268", + "report.json": "sha256:c2151c8bf3346f3d1c2dd82dc194fd0f6ec635da14379007efb553d323da61dd" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/deck.pptx similarity index 84% rename from acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/deck.pptx index a019118..9c2bfe9 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/generation.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/generation.json index 425fe3c..0acf19e 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-1/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/generation.json @@ -3,7 +3,7 @@ "full_detail": true, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": true, "path_id": "native-precise", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/report.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/report.json rename to gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/report.json index 784543f..9bcc134 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-3/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-1/report.json @@ -1,28 +1,28 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:242b1d82037d9ce23a822cf39e83284e0badf3c34978a24efa4212955c066bc7", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:b02db630bfa149f7c4d536539ed99d6300798857c52da99af075824ee5820835", "gold_duplicate_check": "clear", - "generation_seed": "3301", + "generation_seed": "1103", "submission_id": null, "campaign_id": null, "campaign_slot": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "canonical", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:80fdf8daf2b4bf91ee84cf23ddcdbe9df7714ba72f0acd2c022ba705fbd18483", - "submission_sha256": "sha256:ce294e486f30cb38f70b0134da1d290eca21e1975fc9ac932c347252034f843a", + "generation_profile_sha256": "sha256:9d90bb3fc2a81f6ca33aa949f336654703774760f32cae3e71587384d226f268", + "submission_sha256": "sha256:a87dad5dc8b87e28092b8812913ca994f8b29d988fb293d20667ae92bb9f3076", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 18.12, + "grading_duration_seconds": 16.62, "fidelity_score": 0.6768, "campaign_contribution": 0.0, "passed_items": 160, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:fba148613d2283384d4428c5d15c9ca6e1a0c000ccc554107ef4a0eb62c127f2", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 328439, - "grading_duration_seconds": 18.12, + "submission_file_size_bytes": 328436, + "grading_duration_seconds": 16.62, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110379994510446, + "visual_ssim": 0.9116271343949767, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8398481355720332, + "visual_ssim": 0.8425940519061292, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6374918755747534, + "visual_ssim": 0.6380805078087127, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637492 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952277325501212, + "visual_ssim": 0.8958163647840806, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.862667585596799, + "visual_ssim": 0.8632562178307582, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334180228308551, + "visual_ssim": 0.935639537683642, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7704820584664261, + "visual_ssim": 0.7710706907003854, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689816374382788, + "visual_ssim": 0.8703937149793113, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868982 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868982 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868982 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868982 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868982 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8924229531025496, + "visual_ssim": 0.8929665500120428, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892423 (threshold=0.9999)" + "details": "SSIM=0.892967 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892423 (threshold=0.9999)" + "details": "SSIM=0.892967 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892423 (threshold=0.9999)" + "details": "SSIM=0.892967 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892423 (threshold=0.9999)" + "details": "SSIM=0.892967 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892423 (threshold=0.9999)" + "details": "SSIM=0.892967 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7082443549373099, + "visual_ssim": 0.7132452422400472, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-context.json new file mode 100644 index 0000000..0ef8707 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:736e32e97c6842ce6e6612e5ce42719cdc4f7a9edcd17cc0672260b5e29e48d3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:89c52949a2e1a9519831bb9b8236a2c9ba72576c5a3e8f226f336a174712289d", + "generation_seed": "2207", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "canonical", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:34d4ffe47bfbe3269e576404c9fa628545ca1ffa0d92f8e97c1415978aedae29", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-sha256.json new file mode 100644 index 0000000..348d46f --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:0caa2a28fc8275e9f85c0082a48039438cf8c697f051c76d147e02bde4397695", + "deck.pptx": "sha256:34d4ffe47bfbe3269e576404c9fa628545ca1ffa0d92f8e97c1415978aedae29", + "generation.json": "sha256:89c52949a2e1a9519831bb9b8236a2c9ba72576c5a3e8f226f336a174712289d", + "report.json": "sha256:125bfafe20811a7aa7617a9f65eb75671978a585b15962a8d5ff4f60b6b689fb" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/deck.pptx similarity index 84% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/deck.pptx index 60f171b..8952d1c 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/generation.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/generation.json index e1d2cf2..8520388 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-2/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/generation.json @@ -3,7 +3,7 @@ "full_detail": true, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": true, "path_id": "native-precise", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/report.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/report.json rename to gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/report.json index c24aeb8..4681add 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-2/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-2/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:b45ea6b3b1d5e6107f92749dc31b59e693f17cc0fe2de18ee6a8d99c4490e16f", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:736e32e97c6842ce6e6612e5ce42719cdc4f7a9edcd17cc0672260b5e29e48d3", "gold_duplicate_check": "clear", "generation_seed": "2207", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "canonical", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:fa50118325c2de1d08f4f475deb7a87fba9965d9228398362ae7d7c5fd72d57d", - "submission_sha256": "sha256:8891cdafda52fba8c4c995af8654775783ee06b7b8a7ca6d443d5567636eda4d", + "generation_profile_sha256": "sha256:89c52949a2e1a9519831bb9b8236a2c9ba72576c5a3e8f226f336a174712289d", + "submission_sha256": "sha256:34d4ffe47bfbe3269e576404c9fa628545ca1ffa0d92f8e97c1415978aedae29", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 17.32, + "grading_duration_seconds": 17.3, "fidelity_score": 0.6768, "campaign_contribution": 0.0, "passed_items": 160, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:fba148613d2283384d4428c5d15c9ca6e1a0c000ccc554107ef4a0eb62c127f2", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 328434, - "grading_duration_seconds": 17.32, + "submission_file_size_bytes": 328424, + "grading_duration_seconds": 17.3, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110385021610172, + "visual_ssim": 0.911626631685004, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8398481355720332, + "visual_ssim": 0.8425940519061292, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6374854013120296, + "visual_ssim": 0.6380740335459888, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638074 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952270449026112, + "visual_ssim": 0.8958156771365705, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.8626645772782929, + "visual_ssim": 0.8632532095122523, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334309733172464, + "visual_ssim": 0.935639537683642, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933431 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933431 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933431 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933431 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933431 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7704820584664261, + "visual_ssim": 0.7710706907003854, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689567232170345, + "visual_ssim": 0.8703937149793113, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868957 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868957 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868957 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868957 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868957 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8924122940546596, + "visual_ssim": 0.8929604301483991, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892412 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892412 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892412 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892412 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892412 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7082443549373099, + "visual_ssim": 0.7132452422400472, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-context.json new file mode 100644 index 0000000..a0df7da --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:553897e41efda07a6efa7112cce79df1427eb96453eccdd8376ba67df37c979c", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:e19c4f776a22570dcc2c12794d24d876e73fbec5af232ae3686aad0d6c8f518d", + "generation_seed": "3301", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "canonical", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:610297e54513ad148f420513affff524e9215925dd3d1ab9cc77bfbdb1c8613b", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-sha256.json new file mode 100644 index 0000000..f1f33f5 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:3e58665e6fc19a41a2bb18f8497e6225a0b9b571ac09bd8f91951a95478127e8", + "deck.pptx": "sha256:610297e54513ad148f420513affff524e9215925dd3d1ab9cc77bfbdb1c8613b", + "generation.json": "sha256:e19c4f776a22570dcc2c12794d24d876e73fbec5af232ae3686aad0d6c8f518d", + "report.json": "sha256:ea27e1d38d7132071ca628b86b8df7e28d2bc7c02ba01a7ba61558a60831bb96" +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/deck.pptx new file mode 100644 index 0000000..b148c08 Binary files /dev/null and b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/generation.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/generation.json index 1bcdfa3..04d02fc 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-precise/run-3/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/generation.json @@ -3,7 +3,7 @@ "full_detail": true, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": true, "path_id": "native-precise", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/report.json b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/report.json rename to gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/report.json index 202fcf4..479af94 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/native-fast/run-1/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/native-precise/run-3/report.json @@ -1,28 +1,28 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:5838efe536873feecad09469382545fe20868422eb428c4ab39abf73dcdc9b78", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:553897e41efda07a6efa7112cce79df1427eb96453eccdd8376ba67df37c979c", "gold_duplicate_check": "clear", - "generation_seed": "1103", + "generation_seed": "3301", "submission_id": null, "campaign_id": null, "campaign_slot": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "canonical", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:02a4a6979a4e76e3a47799546a81122ef789c61a2861afd8e425e57d7cbf448f", - "submission_sha256": "sha256:15d3c4c216beaac91c99f620ae0cb00cda3122f079dae01b370de43d9d91793d", + "generation_profile_sha256": "sha256:e19c4f776a22570dcc2c12794d24d876e73fbec5af232ae3686aad0d6c8f518d", + "submission_sha256": "sha256:610297e54513ad148f420513affff524e9215925dd3d1ab9cc77bfbdb1c8613b", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 17.84, + "grading_duration_seconds": 15.56, "fidelity_score": 0.6768, "campaign_contribution": 0.0, "passed_items": 160, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:fba148613d2283384d4428c5d15c9ca6e1a0c000ccc554107ef4a0eb62c127f2", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -91,7 +91,7 @@ }, "verified_metrics": { "submission_file_size_bytes": 328433, - "grading_duration_seconds": 17.84, + "grading_duration_seconds": 15.56, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110379994510446, + "visual_ssim": 0.911626631685004, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8398481355720332, + "visual_ssim": 0.8425940519061292, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.839848 (threshold=0.9999)" + "details": "SSIM=0.842594 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6374854013120296, + "visual_ssim": 0.6380805078087127, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.637485 (threshold=0.9999)" + "details": "SSIM=0.638081 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952270449026112, + "visual_ssim": 0.8958156771365705, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805850715415966, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780585 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780585 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780585 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780585 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780585 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.862667585596799, + "visual_ssim": 0.8632562178307582, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334180841083612, + "visual_ssim": 0.9356462026407143, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935646 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935646 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935646 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935646 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935646 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7704820584664261, + "visual_ssim": 0.7710706907003854, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.770482 (threshold=0.9999)" + "details": "SSIM=0.771071 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689640245824766, + "visual_ssim": 0.8703937149793113, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868964 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868964 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868964 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868964 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868964 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.892507112567888, + "visual_ssim": 0.8929586805974005, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892507 (threshold=0.9999)" + "details": "SSIM=0.892959 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892507 (threshold=0.9999)" + "details": "SSIM=0.892959 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892507 (threshold=0.9999)" + "details": "SSIM=0.892959 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892507 (threshold=0.9999)" + "details": "SSIM=0.892959 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892507 (threshold=0.9999)" + "details": "SSIM=0.892959 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7082443549373099, + "visual_ssim": 0.7132452422400472, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.708244 (threshold=0.9999)" + "details": "SSIM=0.713245 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6375, mean=0.8495" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6381, mean=0.8508" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-context.json new file mode 100644 index 0000000..43ead0a --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:3c45a81ce3e8b36e0b7c5b88ae4feca5049a2ae3f9510dc17d1bc87d29da2909", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:e3b1802f2f2dc888dca0aafcae72226f9a38d682457efea289b93737031a3507", + "generation_seed": "1103", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "paraphrase-a", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:46265d3dbc43335e8c72cbc9c13d47b00ce56f88bf9be959d6a98df9e4b94aeb", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-sha256.json new file mode 100644 index 0000000..5be5593 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:75c1ea320e3b9c8475d61981fd724c6dc187089b512147bdc806d360a25cbe01", + "deck.pptx": "sha256:46265d3dbc43335e8c72cbc9c13d47b00ce56f88bf9be959d6a98df9e4b94aeb", + "generation.json": "sha256:e3b1802f2f2dc888dca0aafcae72226f9a38d682457efea289b93737031a3507", + "report.json": "sha256:f0c93c9f7e34da42bdf9a8c4438fc8d94d7b101a12e6d5d7364af0d9920f9555" +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/deck.pptx new file mode 100644 index 0000000..9d0d7da Binary files /dev/null and b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/generation.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/generation.json index 4ca4941..3448133 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/generation.json @@ -3,7 +3,7 @@ "full_detail": false, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": false, "path_id": "visual-fast", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/report.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/report.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/report.json index 590e712..e674ae6 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-1/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:c185890d7d6630f8856ee512fda025d0215d96350b46cff357c0b563736a6a4e", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:3c45a81ce3e8b36e0b7c5b88ae4feca5049a2ae3f9510dc17d1bc87d29da2909", "gold_duplicate_check": "clear", "generation_seed": "1103", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "paraphrase-a", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:57113fd1d7eec455972059e24fb41bb5a6020300f7b238c37ac32aa15195d2a9", - "submission_sha256": "sha256:4de0f7adc60ebef9e236b889fac5fc0393de0a7876c673e1e3ed8621afab7549", + "generation_profile_sha256": "sha256:e3b1802f2f2dc888dca0aafcae72226f9a38d682457efea289b93737031a3507", + "submission_sha256": "sha256:46265d3dbc43335e8c72cbc9c13d47b00ce56f88bf9be959d6a98df9e4b94aeb", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 17.36, + "grading_duration_seconds": 20.55, "fidelity_score": 0.6232, "campaign_contribution": 0.0, "passed_items": 146, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:3df8b56a3ab6ea9921976a1cc54a607381a5dd836f6cc99c75e70eb710fd0917", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 310445, - "grading_duration_seconds": 17.36, + "submission_file_size_bytes": 310362, + "grading_duration_seconds": 20.55, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110384925598632, + "visual_ssim": 0.9116271247938226, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8546457590605453, + "visual_ssim": 0.8552343912945047, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6528624368513524, + "visual_ssim": 0.6534510690853117, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952220622548174, + "visual_ssim": 0.8958106944887768, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.8626675855967988, + "visual_ssim": 0.8632562178307581, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334180228308551, + "visual_ssim": 0.935639537683642, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7717498877169033, + "visual_ssim": 0.7723385199508627, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689497791516051, + "visual_ssim": 0.8703914045529281, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868950 (threshold=0.9999)" + "details": "SSIM=0.870391 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868950 (threshold=0.9999)" + "details": "SSIM=0.870391 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868950 (threshold=0.9999)" + "details": "SSIM=0.870391 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868950 (threshold=0.9999)" + "details": "SSIM=0.870391 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868950 (threshold=0.9999)" + "details": "SSIM=0.870391 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8925393197577023, + "visual_ssim": 0.8931279519916614, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892539 (threshold=0.9999)" + "details": "SSIM=0.893128 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892539 (threshold=0.9999)" + "details": "SSIM=0.893128 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892539 (threshold=0.9999)" + "details": "SSIM=0.893128 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892539 (threshold=0.9999)" + "details": "SSIM=0.893128 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892539 (threshold=0.9999)" + "details": "SSIM=0.893128 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7372259030148629, + "visual_ssim": 0.7428531497852666, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-context.json new file mode 100644 index 0000000..1e74fd8 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:4f1cac51fec7d0f92a5dce34e40eaf316e0ad29f2bf361a60a829f7334751030", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:12b8bb9dc6d2d9345cf2f64e89b6444e0856b17a4f22d4dae0c1ab9517dac23d", + "generation_seed": "2207", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "paraphrase-a", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:c95ddd780e4a95fb88bf8af6d0b3ad00e3d3cb69b51fee5345d001899870e1dc", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-sha256.json new file mode 100644 index 0000000..9db9f6d --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:a2f3d289d7b7d99c10d24dae605df875dfb3c1943f1316a4d518ff9f8f64aba6", + "deck.pptx": "sha256:c95ddd780e4a95fb88bf8af6d0b3ad00e3d3cb69b51fee5345d001899870e1dc", + "generation.json": "sha256:12b8bb9dc6d2d9345cf2f64e89b6444e0856b17a4f22d4dae0c1ab9517dac23d", + "report.json": "sha256:b98a8114d74a1f6b84a41a9f28c052b9ecc030e2142b19527787e681fcd32190" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/deck.pptx similarity index 88% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/deck.pptx index 504fe8a..c5befd2 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/generation.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/generation.json index 90881db..5f85b70 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/generation.json @@ -3,7 +3,7 @@ "full_detail": false, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": false, "path_id": "visual-fast", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/report.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/report.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/report.json index df0923c..5ceffdb 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-2/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-2/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:b1fda2049ce5937e855f5ab9cc6658ffb495c1d118508ee2334007e2a1069d79", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:4f1cac51fec7d0f92a5dce34e40eaf316e0ad29f2bf361a60a829f7334751030", "gold_duplicate_check": "clear", "generation_seed": "2207", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "paraphrase-a", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:5edf8c9018f429f52cc42526b2b14cfc1e0ec8d3f486b0fc5c3fcaffdcad1215", - "submission_sha256": "sha256:cbc64ef5b68b856974258ffbbb5df4c1c909c3f1f582111312e2a7e3ba2b738b", + "generation_profile_sha256": "sha256:12b8bb9dc6d2d9345cf2f64e89b6444e0856b17a4f22d4dae0c1ab9517dac23d", + "submission_sha256": "sha256:c95ddd780e4a95fb88bf8af6d0b3ad00e3d3cb69b51fee5345d001899870e1dc", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 16.46, + "grading_duration_seconds": 18.39, "fidelity_score": 0.6232, "campaign_contribution": 0.0, "passed_items": 146, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:3df8b56a3ab6ea9921976a1cc54a607381a5dd836f6cc99c75e70eb710fd0917", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 310453, - "grading_duration_seconds": 16.46, + "submission_file_size_bytes": 310364, + "grading_duration_seconds": 18.39, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110385021610173, + "visual_ssim": 0.9116271343949767, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8546457590605453, + "visual_ssim": 0.8552343912945047, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6528624368513524, + "visual_ssim": 0.6534510690853116, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952277325501211, + "visual_ssim": 0.8958163647840806, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895228 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800707768427206, + "visual_ssim": 0.7805841119407927, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780071 (threshold=0.9999)" + "details": "SSIM=0.780584 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780071 (threshold=0.9999)" + "details": "SSIM=0.780584 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780071 (threshold=0.9999)" + "details": "SSIM=0.780584 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780071 (threshold=0.9999)" + "details": "SSIM=0.780584 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780071 (threshold=0.9999)" + "details": "SSIM=0.780584 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.8626619524206302, + "visual_ssim": 0.8632505846545894, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862662 (threshold=0.9999)" + "details": "SSIM=0.863251 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862662 (threshold=0.9999)" + "details": "SSIM=0.863251 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862662 (threshold=0.9999)" + "details": "SSIM=0.863251 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862662 (threshold=0.9999)" + "details": "SSIM=0.863251 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862662 (threshold=0.9999)" + "details": "SSIM=0.863251 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334180228308551, + "visual_ssim": 0.935639537683642, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7717498877169033, + "visual_ssim": 0.7723385199508627, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689551342301874, + "visual_ssim": 0.8703967596315104, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868955 (threshold=0.9999)" + "details": "SSIM=0.870397 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868955 (threshold=0.9999)" + "details": "SSIM=0.870397 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868955 (threshold=0.9999)" + "details": "SSIM=0.870397 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868955 (threshold=0.9999)" + "details": "SSIM=0.870397 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868955 (threshold=0.9999)" + "details": "SSIM=0.870397 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8924074641938168, + "visual_ssim": 0.8929960964277761, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892407 (threshold=0.9999)" + "details": "SSIM=0.892996 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892407 (threshold=0.9999)" + "details": "SSIM=0.892996 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892407 (threshold=0.9999)" + "details": "SSIM=0.892996 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892407 (threshold=0.9999)" + "details": "SSIM=0.892996 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892407 (threshold=0.9999)" + "details": "SSIM=0.892996 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7372259030148629, + "visual_ssim": 0.7428531497852666, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-context.json new file mode 100644 index 0000000..3c007d4 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:753c318d269571601659455f44e17efad6bac89503315c5d922581a3d72139e0", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:bf2918b5192b870e9ff73d19e607593c233733fdd00fc2eb1c720312324949cf", + "generation_seed": "3301", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "paraphrase-a", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:571d66f4c0f8c028e59acf928cf5e9775dc0dd9a8f64233bbf5adf262c0f9584", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-sha256.json new file mode 100644 index 0000000..0162017 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:cc5b3f1538e84f53cff5e4ed2aab74a667bd864777b9bb528a509a1b3dc4a2d0", + "deck.pptx": "sha256:571d66f4c0f8c028e59acf928cf5e9775dc0dd9a8f64233bbf5adf262c0f9584", + "generation.json": "sha256:bf2918b5192b870e9ff73d19e607593c233733fdd00fc2eb1c720312324949cf", + "report.json": "sha256:d2ed6b71edf9a2f5a98b93984173ec4f1132b00dd0d09c0273459a74eea3499c" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/deck.pptx similarity index 88% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/deck.pptx index cc87a8a..d6cd941 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/generation.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/generation.json index d17bf81..ece07c9 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/generation.json @@ -3,7 +3,7 @@ "full_detail": false, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": false, "path_id": "visual-fast", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/report.json b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/report.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/report.json index 8e99498..e162b87 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-3/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-fast/run-3/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:a3b80112cf38386fe193bdee91058864aced31454e7f8d4228c56961d9f55868", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:753c318d269571601659455f44e17efad6bac89503315c5d922581a3d72139e0", "gold_duplicate_check": "clear", "generation_seed": "3301", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "paraphrase-a", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:c92454b4a11d898b6f66d88e8df4a0440a3ae56854baf7b20ff856d2e147a276", - "submission_sha256": "sha256:b93f48328e3c0289e95c623b59084998c202f7713f448b40f4408acea2c101f2", + "generation_profile_sha256": "sha256:bf2918b5192b870e9ff73d19e607593c233733fdd00fc2eb1c720312324949cf", + "submission_sha256": "sha256:571d66f4c0f8c028e59acf928cf5e9775dc0dd9a8f64233bbf5adf262c0f9584", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 16.6, + "grading_duration_seconds": 17.5, "fidelity_score": 0.6232, "campaign_contribution": 0.0, "passed_items": 146, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:3df8b56a3ab6ea9921976a1cc54a607381a5dd836f6cc99c75e70eb710fd0917", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 310461, - "grading_duration_seconds": 16.6, + "submission_file_size_bytes": 310368, + "grading_duration_seconds": 17.5, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110385021610173, + "visual_ssim": 0.9116271343949767, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911039 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8546457590605453, + "visual_ssim": 0.8552343912945047, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.854646 (threshold=0.9999)" + "details": "SSIM=0.855234 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6528687394695366, + "visual_ssim": 0.6534573717034958, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653457 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653457 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653457 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653457 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653457 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952270449026112, + "visual_ssim": 0.8958156771365705, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.8626645401591583, + "visual_ssim": 0.8632531723931175, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334180228308551, + "visual_ssim": 0.935639537683642, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7717498877169033, + "visual_ssim": 0.7723385199508627, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689957619563952, + "visual_ssim": 0.8704373873577179, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868996 (threshold=0.9999)" + "details": "SSIM=0.870437 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868996 (threshold=0.9999)" + "details": "SSIM=0.870437 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868996 (threshold=0.9999)" + "details": "SSIM=0.870437 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868996 (threshold=0.9999)" + "details": "SSIM=0.870437 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868996 (threshold=0.9999)" + "details": "SSIM=0.870437 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8924432934336829, + "visual_ssim": 0.8930319256676421, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892443 (threshold=0.9999)" + "details": "SSIM=0.893032 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892443 (threshold=0.9999)" + "details": "SSIM=0.893032 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892443 (threshold=0.9999)" + "details": "SSIM=0.893032 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892443 (threshold=0.9999)" + "details": "SSIM=0.893032 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892443 (threshold=0.9999)" + "details": "SSIM=0.893032 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7372259030148629, + "visual_ssim": 0.7428531497852666, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8525" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8538" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-context.json new file mode 100644 index 0000000..fd66372 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:1144e3080c7bb1b1e805563c5f3a7bd6fffc02f8ab392d1d16106cb2cc96e235", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:900a65d7c195b125931004024fa10e71b299799f4d6f75ab86adad7462fc7ded", + "generation_seed": "1103", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "paraphrase-a", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:e2b42182ffefe25080a60f0a5389796a23430cbc134fd124afb50d894d00e494", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-sha256.json new file mode 100644 index 0000000..c98a83c --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:3817220b6d83e60946fd6a124e8ddbaa9e23c572eb43240a8b65a51340898597", + "deck.pptx": "sha256:e2b42182ffefe25080a60f0a5389796a23430cbc134fd124afb50d894d00e494", + "generation.json": "sha256:900a65d7c195b125931004024fa10e71b299799f4d6f75ab86adad7462fc7ded", + "report.json": "sha256:99b225a8498369515eea0ca85b804f9b247b81a4f62d8780101e5e7469e872e4" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/deck.pptx similarity index 88% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/deck.pptx index ad49985..2f113a3 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/generation.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/generation.json index 751dc78..41c1f7b 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/generation.json @@ -3,7 +3,7 @@ "full_detail": true, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": false, "path_id": "visual-precise", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/report.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/report.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/report.json index 8eae2d4..b28769b 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-1/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-1/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:03c94f123e54bc8ba9bbebe2c1c37166488d85700b39b8466b634db85c1b087d", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:1144e3080c7bb1b1e805563c5f3a7bd6fffc02f8ab392d1d16106cb2cc96e235", "gold_duplicate_check": "clear", "generation_seed": "1103", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "paraphrase-a", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:2d40b52a9418540076a7d5e961b5c9ac881a9ef6313f87a9ddf7c647d54bfc43", - "submission_sha256": "sha256:b2a714b92dc2de09f186ecec21a5969efa2eb7a02317c9fae47c0ad06848d95b", + "generation_profile_sha256": "sha256:900a65d7c195b125931004024fa10e71b299799f4d6f75ab86adad7462fc7ded", + "submission_sha256": "sha256:e2b42182ffefe25080a60f0a5389796a23430cbc134fd124afb50d894d00e494", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 16.49, + "grading_duration_seconds": 15.58, "fidelity_score": 0.6232, "campaign_contribution": 0.0, "passed_items": 146, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:3df8b56a3ab6ea9921976a1cc54a607381a5dd836f6cc99c75e70eb710fd0917", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 310643, - "grading_duration_seconds": 16.49, + "submission_file_size_bytes": 310558, + "grading_duration_seconds": 15.58, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110379994510446, + "visual_ssim": 0.911626631685004, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8333607895168887, + "visual_ssim": 0.8339494217508482, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6528689111140761, + "visual_ssim": 0.6534575433480354, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952220622548174, + "visual_ssim": 0.8958106944887767, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895222 (threshold=0.9999)" + "details": "SSIM=0.895811 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.8626645401591584, + "visual_ssim": 0.8632531723931175, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334216799524233, + "visual_ssim": 0.9356431948052104, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7717498877169033, + "visual_ssim": 0.7723385199508627, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689582596543679, + "visual_ssim": 0.8703998850556909, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868958 (threshold=0.9999)" + "details": "SSIM=0.870400 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868958 (threshold=0.9999)" + "details": "SSIM=0.870400 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868958 (threshold=0.9999)" + "details": "SSIM=0.870400 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868958 (threshold=0.9999)" + "details": "SSIM=0.870400 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868958 (threshold=0.9999)" + "details": "SSIM=0.870400 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8923684204652508, + "visual_ssim": 0.89295705269921, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892368 (threshold=0.9999)" + "details": "SSIM=0.892957 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892368 (threshold=0.9999)" + "details": "SSIM=0.892957 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892368 (threshold=0.9999)" + "details": "SSIM=0.892957 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892368 (threshold=0.9999)" + "details": "SSIM=0.892957 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892368 (threshold=0.9999)" + "details": "SSIM=0.892957 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7372259030148629, + "visual_ssim": 0.7428531497852666, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-context.json new file mode 100644 index 0000000..b9b1d45 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:33489a948e307cb7272f7c0ea8802e1ed562fffbc2f3c360586c85e10fb847e9", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:7444101f01fd698b06ea6079c5efba10f2159ff27400e0aac9e1da1b9c9f5c5d", + "generation_seed": "2207", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "paraphrase-a", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:858055f3d91fcfcff9e80ef9f9c32c8af96107fedafb0acb4137fbc455fc36b4", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-sha256.json new file mode 100644 index 0000000..cc97c42 --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:2da7acdc2befad0ebfff5fb25aa65a9c510d550d1af55891e4df857acf1fd2c6", + "deck.pptx": "sha256:858055f3d91fcfcff9e80ef9f9c32c8af96107fedafb0acb4137fbc455fc36b4", + "generation.json": "sha256:7444101f01fd698b06ea6079c5efba10f2159ff27400e0aac9e1da1b9c9f5c5d", + "report.json": "sha256:9a53392367db5bacb459207ce79a63f3e28cc4b7241778b6ca259d6d21e01d3b" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/deck.pptx similarity index 88% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/deck.pptx index 545dcb5..2decabd 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/generation.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/generation.json index 133eb5a..95f3a82 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/generation.json @@ -3,7 +3,7 @@ "full_detail": true, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": false, "path_id": "visual-precise", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/report.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/report.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/report.json index e7d27d0..7ba29ac 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-2/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-2/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:ef5117a3dae7c414331a21c91a22bc13d6f0019b272aa6ae6cf57c8ba91afaaa", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:33489a948e307cb7272f7c0ea8802e1ed562fffbc2f3c360586c85e10fb847e9", "gold_duplicate_check": "clear", "generation_seed": "2207", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "paraphrase-a", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:d7ade6a6c8bba2bf3cc219e705978f2295e0eb281029f41e6a28143eabc7ed10", - "submission_sha256": "sha256:fa2173ea20374f27a2f464a7881eb12adf5fe774ddc027ee1cab4feeb74945a4", + "generation_profile_sha256": "sha256:7444101f01fd698b06ea6079c5efba10f2159ff27400e0aac9e1da1b9c9f5c5d", + "submission_sha256": "sha256:858055f3d91fcfcff9e80ef9f9c32c8af96107fedafb0acb4137fbc455fc36b4", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 17.51, + "grading_duration_seconds": 15.35, "fidelity_score": 0.6232, "campaign_contribution": 0.0, "passed_items": 146, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:3df8b56a3ab6ea9921976a1cc54a607381a5dd836f6cc99c75e70eb710fd0917", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 310654, - "grading_duration_seconds": 17.51, + "submission_file_size_bytes": 310550, + "grading_duration_seconds": 15.35, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110384925598632, + "visual_ssim": 0.9116271247938226, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8333607895168887, + "visual_ssim": 0.8339494217508482, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6528624368513524, + "visual_ssim": 0.6534510690853116, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652862 (threshold=0.9999)" + "details": "SSIM=0.653451 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952270449026112, + "visual_ssim": 0.8958156771365705, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.862667585596799, + "visual_ssim": 0.8632562178307582, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862668 (threshold=0.9999)" + "details": "SSIM=0.863256 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334180228308551, + "visual_ssim": 0.935639537683642, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933418 (threshold=0.9999)" + "details": "SSIM=0.935640 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7717498877169033, + "visual_ssim": 0.7723385199508627, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689520895779884, + "visual_ssim": 0.8703937149793113, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.8923770489232284, + "visual_ssim": 0.8929656811571878, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892377 (threshold=0.9999)" + "details": "SSIM=0.892966 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892377 (threshold=0.9999)" + "details": "SSIM=0.892966 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892377 (threshold=0.9999)" + "details": "SSIM=0.892966 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892377 (threshold=0.9999)" + "details": "SSIM=0.892966 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892377 (threshold=0.9999)" + "details": "SSIM=0.892966 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7372259030148629, + "visual_ssim": 0.7428531497852666, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" } ] } diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-context.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-context.json new file mode 100644 index 0000000..dfe929f --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-context.json @@ -0,0 +1,67 @@ +{ + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", + "assistance_class": "human-assisted", + "attestation": { + "attribution": "repository-owned path; no model attribution", + "generator_kind": "deterministic_repository_baseline", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" + }, + "attested_metrics": { + "external_resources_used": false, + "human_intervention": false, + "post_processing": false + }, + "campaign_id": null, + "campaign_slot": null, + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:6bbc833c79f551401649cab977ed2a8104a56790edec0ec577952cad98ee284f", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "environment_attestation": { + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "local_cohort": true, + "render_runtime": { + "dependencies": { + "Pillow": "12.3.0", + "lxml": "6.1.1", + "numpy": "2.4.4", + "scikit-image": "0.26.0" + }, + "export_height": 1080, + "export_width": 1920, + "grader_version": "1.0.0a1", + "libreoffice": "LibreOffice 7.3.7.2 30(Build:2)", + "locale": "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C", + "machine": "x86_64", + "platform": "Linux-6.12.76-linuxkit-x86_64-with-glibc2.35", + "python": "3.12.11", + "python_implementation": "CPython", + "timezone": "UTC" + }, + "schema_version": "1.0" + }, + "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", + "generation_profile_sha256": "sha256:ac5c7821a4243998180841e18fa35e31f8c69dc1a13e0f8270620f5e6b5dd54c", + "generation_seed": "3301", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", + "gold_duplicate_check": "clear", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "grading_mode": "local", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "mce_resolved_package_sha256": null, + "model_key": null, + "model_revision_key": null, + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "prompt_variant": "paraphrase-a", + "robustness_group_id": null, + "run_kind": "submission", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "submission_id": null, + "submission_sha256": "sha256:4aa23e14982fd1607cc6cd9da6a3c8bd66158db0eaeb2e2ade9a43b6ac7a7c77", + "submitter_id": null, + "targeted_tier": 3 +} diff --git a/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-sha256.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-sha256.json new file mode 100644 index 0000000..dec471f --- /dev/null +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/artifact-sha256.json @@ -0,0 +1,6 @@ +{ + "artifact-context.json": "sha256:964462cdbc9bd489d1436dc5919581288cee42389d4e7319e05003b8cff6c961", + "deck.pptx": "sha256:4aa23e14982fd1607cc6cd9da6a3c8bd66158db0eaeb2e2ade9a43b6ac7a7c77", + "generation.json": "sha256:ac5c7821a4243998180841e18fa35e31f8c69dc1a13e0f8270620f5e6b5dd54c", + "report.json": "sha256:035155369c9fe250f6d9b83bec3a2358a2d4c403184feb4ed81d711bec343107" +} diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/deck.pptx b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/deck.pptx similarity index 88% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/deck.pptx rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/deck.pptx index 7664b7d..3eb370a 100644 Binary files a/acidslide-v1/benchmark/comparative-v1/runs/visual-fast/run-1/deck.pptx and b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/deck.pptx differ diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/generation.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/generation.json similarity index 85% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/generation.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/generation.json index 8aefea7..9c1c250 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/generation.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/generation.json @@ -3,7 +3,7 @@ "full_detail": true, "generation_attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa", + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb", "human_intervention": false, "native_objects": false, "path_id": "visual-precise", diff --git a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/report.json b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/report.json similarity index 92% rename from acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/report.json rename to gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/report.json index f154684..033ba64 100644 --- a/acidslide-v1/benchmark/comparative-v1/runs/visual-precise/run-3/report.json +++ b/gloss-v1/benchmark/comparative-v1/runs/visual-precise/run-3/report.json @@ -1,26 +1,26 @@ { - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "grading_mode": "local", "run_kind": "submission", "verification_scope": "artifact_conformance", "verification_label": "local artifact score; self-reported", "grader_version": "1.0.0a1", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_package_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "oci_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", - "prompt_bundle_sha256": "sha256:1579cd0439040042b091e276b3d67d0fbb9dfbf7087bea80651fd40835c7b818", - "scored_assertion_inventory_sha256": "sha256:62be3978e59e177c819b6900964f0d543a4e39fec0b89fd5c45404ccf214fc47", - "checklist_bundle_sha256": "sha256:bcfe2c7c3647742eeb90edbef74c1de09651c05b4cdbc1b5cc4430b67f5e9d83", - "schema_bundle_sha256": "sha256:f9a55826487a67023137ef2319e9a99724469e38cf9ff5e78932801c4d9616a5", - "schema_root_map_sha256": "sha256:45d145a1b40a83cff05cc681575a58325f01c14a33868ce4be78f79f2ffc63a7", - "mce_profile_sha256": "sha256:f1468ccff4c7b40a2ed1a97244feb1af7416e4e4ad06fe33d1052c32b360bcd9", - "asset_manifest_sha256": "sha256:813a36b7e34fec686863e0d94ec4c040344b1c1a27270cdb103e424f988f4e8c", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_package_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "oci_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", + "prompt_bundle_sha256": "sha256:39370107180d15c2de613597eb7cc34328381def2b0a1fd809cd2c220ecf344d", + "scored_assertion_inventory_sha256": "sha256:91b4d45850c68676698ab361281531542569d37b43fdd905909de0e2f83f8ed3", + "checklist_bundle_sha256": "sha256:fd316e148ac05b5b2d06244e2f03dc4d79824b906f0604a5b5f6960d4e674287", + "schema_bundle_sha256": "sha256:f124053d1e8d9ec2ec7ed3ba9a96048a1203575501e931707d66d675513b67ac", + "schema_root_map_sha256": "sha256:af07a14656a958046f8ac42347de3fea77536ec793aff537586a1a817abae2e3", + "mce_profile_sha256": "sha256:99928e2122004986dcd2cb4ce898a95045d8cde558d3d0084b0ce19fa712aa33", + "asset_manifest_sha256": "sha256:ef7cf071026f30bd5631231bb03918d541bb05766d980f4150374b4a5f392ea9", "font_manifest_sha256": "sha256:a770fe1f2a127a532da82dd8f9063c43dcc51523b91575c676db4fac80bc7c55", - "canonical_package_hash_profile_sha256": "sha256:f29388160d1a3286ccf1bfe3c6faf88685f9cd4def8008301e6cc975a4df500a", - "canonical_package_hash_v1": "sha256:f64f495b1ce1ace47f5abbd9341843313bf9f05108146f012cb3c8371c623080", + "canonical_package_hash_profile_sha256": "sha256:3f6985c6498c2aeb4822898250d83f51a6279d4c664b5a500021ebbb95943b85", + "canonical_package_hash_v1": "sha256:6bbc833c79f551401649cab977ed2a8104a56790edec0ec577952cad98ee284f", "gold_duplicate_check": "clear", "generation_seed": "3301", "submission_id": null, @@ -33,12 +33,12 @@ "targeted_tier": 3, "prompt_variant": "paraphrase-a", "assistance_class": "human-assisted", - "generation_profile_sha256": "sha256:1afbd5f7bf72ab7d507aa732b1a24de92068025afa8baed101cea5c261d51a9f", - "submission_sha256": "sha256:c4e9ead5f6b485c35d1a7022f8e90ae40dfe0a8fa129baf6aecfddcebfb6e47e", + "generation_profile_sha256": "sha256:ac5c7821a4243998180841e18fa35e31f8c69dc1a13e0f8270620f5e6b5dd54c", + "submission_sha256": "sha256:4aa23e14982fd1607cc6cd9da6a3c8bd66158db0eaeb2e2ade9a43b6ac7a7c77", "mce_resolved_package_sha256": null, - "gold_submission_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_mce_resolved_package_sha256": "sha256:39cab433143ea630c6c5abb7c31c7a0a79d6609ae4f24aca3dc8d08a5e319ad0", - "gold_canonical_package_hash_v1": "sha256:0a919d923b7e2e15b56a3dcaa1577d4df8e9bc07004817e4ffc607f57fee4520", + "gold_submission_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_mce_resolved_package_sha256": "sha256:165ff5a5cf61b3d910d94cae2876a2d88f92cb725491752cddbdd66a6990da1b", + "gold_canonical_package_hash_v1": "sha256:ab74e5b4985945b09b7a55d31d7b03cff204a84250342ef1b9f923ec8497e2b9", "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -49,7 +49,7 @@ "local_mode" ], "repair_triggered": false, - "grading_duration_seconds": 17.54, + "grading_duration_seconds": 17.72, "fidelity_score": 0.6232, "campaign_contribution": 0.0, "passed_items": 146, @@ -58,7 +58,7 @@ "eligible": false, "score_semantic_report_sha256": "sha256:3df8b56a3ab6ea9921976a1cc54a607381a5dd836f6cc99c75e70eb710fd0917", "environment_attestation": { - "container_image_digest": "sha256:29f5fe733d762d2633f28824a18807c3273d02c040db56c0cda12affd246732d", + "container_image_digest": "sha256:5697ac422f8d31d1689fe0f56059b90d7b08ae15f701a6424b6c1664b1811cd4", "local_cohort": true, "render_runtime": { "grader_version": "1.0.0a1", @@ -90,8 +90,8 @@ } }, "verified_metrics": { - "submission_file_size_bytes": 310652, - "grading_duration_seconds": 17.54, + "submission_file_size_bytes": 310558, + "grading_duration_seconds": 17.72, "schema_valid": true, "schema_validation_performed": true, "visual_verification_performed": true, @@ -106,7 +106,7 @@ "attestation": { "attribution": "repository-owned path; no model attribution", "generator_kind": "deterministic_repository_baseline", - "generator_sha256": "sha256:8f0b9afa9c6c74b832ea13621a02e4a29a1b9300d9504a9e72093db821e646aa" + "generator_sha256": "sha256:a4b9a1bfc282ff9d64a6416e0df3f6219646b595e81f8b8037f5a967fdd582cb" }, "anti_cheat_flags": [], "schema_violations": [], @@ -115,7 +115,7 @@ { "slide": 1, "tier": 1, - "visual_ssim": 0.8966913114797547, + "visual_ssim": 0.9038736819069016, "visual_pixel_exact": false, "passed_items": 7, "total_items": 13, @@ -157,7 +157,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.font-policy", @@ -183,7 +183,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.hierarchy-z-order", @@ -248,7 +248,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.semantic-structure", @@ -274,7 +274,7 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" }, { "id": "slide-01.typography", @@ -287,14 +287,14 @@ "tier_affected_slides": [ 1 ], - "details": "SSIM=0.896691 (threshold=0.9999)" + "details": "SSIM=0.903874 (threshold=0.9999)" } ] }, { "slide": 2, "tier": 1, - "visual_ssim": 0.9110379994510446, + "visual_ssim": 0.911626631685004, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -336,7 +336,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.font-policy", @@ -362,7 +362,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.hierarchy-z-order", @@ -427,7 +427,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.semantic-structure", @@ -453,7 +453,7 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" }, { "id": "slide-02.typography", @@ -466,14 +466,14 @@ "tier_affected_slides": [ 2 ], - "details": "SSIM=0.911038 (threshold=0.9999)" + "details": "SSIM=0.911627 (threshold=0.9999)" } ] }, { "slide": 3, "tier": 1, - "visual_ssim": 0.8333607895168887, + "visual_ssim": 0.8339494217508482, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -515,7 +515,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.font-policy", @@ -541,7 +541,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.hierarchy-z-order", @@ -606,7 +606,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.semantic-structure", @@ -632,7 +632,7 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" }, { "id": "slide-03.typography", @@ -645,14 +645,14 @@ "tier_affected_slides": [ 3 ], - "details": "SSIM=0.833361 (threshold=0.9999)" + "details": "SSIM=0.833949 (threshold=0.9999)" } ] }, { "slide": 4, "tier": 1, - "visual_ssim": 0.6528689111140761, + "visual_ssim": 0.6534575433480354, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -694,7 +694,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" }, { "id": "slide-04.font-policy", @@ -720,7 +720,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" }, { "id": "slide-04.hierarchy-z-order", @@ -785,7 +785,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" }, { "id": "slide-04.semantic-structure", @@ -811,7 +811,7 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" }, { "id": "slide-04.typography", @@ -824,14 +824,14 @@ "tier_affected_slides": [ 4 ], - "details": "SSIM=0.652869 (threshold=0.9999)" + "details": "SSIM=0.653458 (threshold=0.9999)" } ] }, { "slide": 5, "tier": 1, - "visual_ssim": 0.8952270449026112, + "visual_ssim": 0.8958156771365705, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -873,7 +873,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.font-policy", @@ -899,7 +899,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.hierarchy-z-order", @@ -964,7 +964,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.semantic-structure", @@ -990,7 +990,7 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" }, { "id": "slide-05.typography", @@ -1003,14 +1003,14 @@ "tier_affected_slides": [ 5 ], - "details": "SSIM=0.895227 (threshold=0.9999)" + "details": "SSIM=0.895816 (threshold=0.9999)" } ] }, { "slide": 6, "tier": 2, - "visual_ssim": 0.8554511717935086, + "visual_ssim": 0.8560398040274678, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1052,7 +1052,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.font-policy", @@ -1078,7 +1078,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.hierarchy-z-order", @@ -1143,7 +1143,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.semantic-structure", @@ -1169,7 +1169,7 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" }, { "id": "slide-06.typography", @@ -1182,14 +1182,14 @@ "tier_affected_slides": [ 6 ], - "details": "SSIM=0.855451 (threshold=0.9999)" + "details": "SSIM=0.856040 (threshold=0.9999)" } ] }, { "slide": 7, "tier": 2, - "visual_ssim": 0.8488871279107325, + "visual_ssim": 0.849475760144692, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1231,7 +1231,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.font-policy", @@ -1257,7 +1257,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.hierarchy-z-order", @@ -1322,7 +1322,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.semantic-structure", @@ -1348,7 +1348,7 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" }, { "id": "slide-07.typography", @@ -1361,14 +1361,14 @@ "tier_affected_slides": [ 7 ], - "details": "SSIM=0.848887 (threshold=0.9999)" + "details": "SSIM=0.849476 (threshold=0.9999)" } ] }, { "slide": 8, "tier": 2, - "visual_ssim": 0.9589720581317279, + "visual_ssim": 0.959304577203889, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -1410,7 +1410,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.font-policy", @@ -1436,7 +1436,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.hierarchy-z-order", @@ -1501,7 +1501,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.semantic-structure", @@ -1527,7 +1527,7 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" }, { "id": "slide-08.typography", @@ -1540,14 +1540,14 @@ "tier_affected_slides": [ 8 ], - "details": "SSIM=0.958972 (threshold=0.9999)" + "details": "SSIM=0.959305 (threshold=0.9999)" } ] }, { "slide": 9, "tier": 2, - "visual_ssim": 0.7800690238976954, + "visual_ssim": 0.7805823589957673, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1589,7 +1589,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.font-policy", @@ -1615,7 +1615,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.hierarchy-z-order", @@ -1680,7 +1680,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.semantic-structure", @@ -1706,7 +1706,7 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" }, { "id": "slide-09.typography", @@ -1719,14 +1719,14 @@ "tier_affected_slides": [ 9 ], - "details": "SSIM=0.780069 (threshold=0.9999)" + "details": "SSIM=0.780582 (threshold=0.9999)" } ] }, { "slide": 10, "tier": 2, - "visual_ssim": 0.8865733650390187, + "visual_ssim": 0.887161997272978, "visual_pixel_exact": false, "passed_items": 5, "total_items": 13, @@ -1768,7 +1768,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.font-policy", @@ -1794,7 +1794,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.hierarchy-z-order", @@ -1859,7 +1859,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.semantic-structure", @@ -1885,7 +1885,7 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" }, { "id": "slide-10.typography", @@ -1898,14 +1898,14 @@ "tier_affected_slides": [ 10 ], - "details": "SSIM=0.886573 (threshold=0.9999)" + "details": "SSIM=0.887162 (threshold=0.9999)" } ] }, { "slide": 11, "tier": 2, - "visual_ssim": 0.8626645401591584, + "visual_ssim": 0.8632531723931175, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -1947,7 +1947,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.font-policy", @@ -1973,7 +1973,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.hierarchy-z-order", @@ -2038,7 +2038,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.semantic-structure", @@ -2064,7 +2064,7 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" }, { "id": "slide-11.typography", @@ -2077,14 +2077,14 @@ "tier_affected_slides": [ 11 ], - "details": "SSIM=0.862665 (threshold=0.9999)" + "details": "SSIM=0.863253 (threshold=0.9999)" } ] }, { "slide": 12, "tier": 2, - "visual_ssim": 0.9334216799524233, + "visual_ssim": 0.9356431948052104, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2126,7 +2126,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" }, { "id": "slide-12.font-policy", @@ -2152,7 +2152,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" }, { "id": "slide-12.hierarchy-z-order", @@ -2217,7 +2217,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" }, { "id": "slide-12.semantic-structure", @@ -2243,7 +2243,7 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" }, { "id": "slide-12.typography", @@ -2256,14 +2256,14 @@ "tier_affected_slides": [ 12 ], - "details": "SSIM=0.933422 (threshold=0.9999)" + "details": "SSIM=0.935643 (threshold=0.9999)" } ] }, { "slide": 13, "tier": 3, - "visual_ssim": 0.7717498877169033, + "visual_ssim": 0.7723385199508627, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -2305,7 +2305,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.font-policy", @@ -2331,7 +2331,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.hierarchy-z-order", @@ -2396,7 +2396,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.semantic-structure", @@ -2422,7 +2422,7 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" }, { "id": "slide-13.typography", @@ -2435,14 +2435,14 @@ "tier_affected_slides": [ 13 ], - "details": "SSIM=0.771750 (threshold=0.9999)" + "details": "SSIM=0.772339 (threshold=0.9999)" } ] }, { "slide": 14, "tier": 3, - "visual_ssim": 0.8689520895779883, + "visual_ssim": 0.8703937149793113, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2484,7 +2484,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.font-policy", @@ -2510,7 +2510,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.hierarchy-z-order", @@ -2575,7 +2575,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.semantic-structure", @@ -2601,7 +2601,7 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" }, { "id": "slide-14.typography", @@ -2614,14 +2614,14 @@ "tier_affected_slides": [ 14 ], - "details": "SSIM=0.868952 (threshold=0.9999)" + "details": "SSIM=0.870394 (threshold=0.9999)" } ] }, { "slide": 15, "tier": 3, - "visual_ssim": 0.9129703755252768, + "visual_ssim": 0.9135590077592362, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2663,7 +2663,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.font-policy", @@ -2689,7 +2689,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.hierarchy-z-order", @@ -2754,7 +2754,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.semantic-structure", @@ -2780,7 +2780,7 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" }, { "id": "slide-15.typography", @@ -2793,14 +2793,14 @@ "tier_affected_slides": [ 15 ], - "details": "SSIM=0.912970 (threshold=0.9999)" + "details": "SSIM=0.913559 (threshold=0.9999)" } ] }, { "slide": 16, "tier": 3, - "visual_ssim": 0.9463268415072882, + "visual_ssim": 0.9469154737412474, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -2842,7 +2842,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.font-policy", @@ -2868,7 +2868,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.hierarchy-z-order", @@ -2933,7 +2933,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.semantic-structure", @@ -2959,7 +2959,7 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" }, { "id": "slide-16.typography", @@ -2972,14 +2972,14 @@ "tier_affected_slides": [ 16 ], - "details": "SSIM=0.946327 (threshold=0.9999)" + "details": "SSIM=0.946915 (threshold=0.9999)" } ] }, { "slide": 17, "tier": 3, - "visual_ssim": 0.8500932341958944, + "visual_ssim": 0.8506818664298538, "visual_pixel_exact": false, "passed_items": 6, "total_items": 13, @@ -3021,7 +3021,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.font-policy", @@ -3047,7 +3047,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.hierarchy-z-order", @@ -3112,7 +3112,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.semantic-structure", @@ -3138,7 +3138,7 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" }, { "id": "slide-17.typography", @@ -3151,14 +3151,14 @@ "tier_affected_slides": [ 17 ], - "details": "SSIM=0.850093 (threshold=0.9999)" + "details": "SSIM=0.850682 (threshold=0.9999)" } ] }, { "slide": 18, "tier": 3, - "visual_ssim": 0.7339713160687138, + "visual_ssim": 0.7345599483026731, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3200,7 +3200,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.font-policy", @@ -3226,7 +3226,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.hierarchy-z-order", @@ -3291,7 +3291,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.semantic-structure", @@ -3317,7 +3317,7 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" }, { "id": "slide-18.typography", @@ -3330,14 +3330,14 @@ "tier_affected_slides": [ 18 ], - "details": "SSIM=0.733971 (threshold=0.9999)" + "details": "SSIM=0.734560 (threshold=0.9999)" } ] }, { "slide": 19, "tier": 3, - "visual_ssim": 0.89237179791444, + "visual_ssim": 0.8929604301483991, "visual_pixel_exact": false, "passed_items": 8, "total_items": 13, @@ -3379,7 +3379,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" }, { "id": "slide-19.font-policy", @@ -3405,7 +3405,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" }, { "id": "slide-19.hierarchy-z-order", @@ -3470,7 +3470,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" }, { "id": "slide-19.semantic-structure", @@ -3496,7 +3496,7 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" }, { "id": "slide-19.typography", @@ -3509,14 +3509,14 @@ "tier_affected_slides": [ 19 ], - "details": "SSIM=0.892372 (threshold=0.9999)" + "details": "SSIM=0.892960 (threshold=0.9999)" } ] }, { "slide": 20, "tier": 3, - "visual_ssim": 0.7372259030148629, + "visual_ssim": 0.7428531497852666, "visual_pixel_exact": false, "passed_items": 3, "total_items": 13, @@ -3558,7 +3558,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.font-policy", @@ -3584,7 +3584,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.hierarchy-z-order", @@ -3649,7 +3649,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.semantic-structure", @@ -3675,7 +3675,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" }, { "id": "slide-20.typography", @@ -3688,7 +3688,7 @@ "tier_affected_slides": [ 20 ], - "details": "SSIM=0.737226 (threshold=0.9999)" + "details": "SSIM=0.742853 (threshold=0.9999)" } ] } @@ -3724,7 +3724,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.approved-assets", @@ -3820,7 +3820,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.font-policy", @@ -3916,7 +3916,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.master-present", @@ -3980,7 +3980,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.native-object-coverage", @@ -4140,7 +4140,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.render-consistency", @@ -4172,7 +4172,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.rtl-cjk-coverage", @@ -4268,7 +4268,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" }, { "id": "deck.theme-structure", @@ -4332,7 +4332,7 @@ 19, 20 ], - "details": "0/20 slides meet SSIM 0.9999; minimum=0.6529, mean=0.8514" + "details": "0/20 slides meet SSIM 0.9999; minimum=0.6535, mean=0.8527" } ] } diff --git a/acidslide-v1/benchmark/comparative-v1/score_bundle.py b/gloss-v1/benchmark/comparative-v1/score_bundle.py similarity index 96% rename from acidslide-v1/benchmark/comparative-v1/score_bundle.py rename to gloss-v1/benchmark/comparative-v1/score_bundle.py index 7975e96..3625133 100644 --- a/acidslide-v1/benchmark/comparative-v1/score_bundle.py +++ b/gloss-v1/benchmark/comparative-v1/score_bundle.py @@ -19,17 +19,17 @@ import rfc8785 -from acidslide.checklist import load_checklist -from acidslide.environment import environment_details -from acidslide.models import ( +from gloss.checklist import load_checklist +from gloss.environment import environment_details +from gloss.models import ( ArtifactReportContext, GoldDuplicateCheck, GradingMode, RunKind, ) -from acidslide.package_hash import canonical_package_identity, sha256_file -from acidslide.pipeline import run_pipeline -from acidslide.provenance import ( +from gloss.package_hash import canonical_package_identity, sha256_file +from gloss.pipeline import run_pipeline +from gloss.provenance import ( ScoringCohortProvenance, derive_scoring_cohort_id, ) @@ -61,14 +61,14 @@ def tree_manifest( root: Path, *, excludes: tuple[str, ...] = () ) -> list[dict[str, Any]]: entries: list[dict[str, Any]] = [] - for path in sorted( - candidate for candidate in root.rglob("*") if candidate.is_file() - ): + for path in sorted(root.rglob("*"), key=lambda candidate: candidate.as_posix()): relative = path.relative_to(root).as_posix() if any( relative == item or relative.startswith(f"{item}/") for item in excludes ): continue + if not path.is_file(): + continue entries.append( { "bytes": path.stat().st_size, @@ -307,7 +307,7 @@ def freeze_existing_manifest(comparative_root: Path) -> None: "cohort_sha256": prefixed_sha256(comparative_root / "cohort.json"), "disclosure": DISCLOSURE, "reproduction_command": ( - "./acidslide-v1/benchmark/comparative-v1/reproduce.sh" + "./gloss-v1/benchmark/comparative-v1/reproduce.sh" ), "runs": runs, "schema_version": "1.0", @@ -354,7 +354,7 @@ def score_all( for item in load_checklist(benchmark_root / "checklist", 3) if item.verification.method == "visual_ssim" } - gold = benchmark_root / "deck" / "gold" / "acidslide-v1-gold.pptx" + gold = benchmark_root / "deck" / "gold" / "gloss-v1-gold.pptx" run_summaries: list[dict[str, Any]] = [] for path_id in PATHS: for run in RUNS: @@ -447,7 +447,7 @@ def score_all( "disclosure": DISCLOSURE, "metric_definitions": { "local_fidelity_percent": ( - "AcidSlide weighted artifact score multiplied by 100" + "Gloss weighted artifact score multiplied by 100" ), "mean_visual_ssim_percent": ( "mean slide SSIM against gold renders multiplied by 100" @@ -470,7 +470,7 @@ def score_all( "cohort_sha256": prefixed_sha256(comparative_root / "cohort.json"), "disclosure": DISCLOSURE, "reproduction_command": ( - "./acidslide-v1/benchmark/comparative-v1/reproduce.sh" + "./gloss-v1/benchmark/comparative-v1/reproduce.sh" ), "runs": run_summaries, "schema_version": "1.0", diff --git a/acidslide-v1/benchmark/comparative-v1/summary.json b/gloss-v1/benchmark/comparative-v1/summary.json similarity index 51% rename from acidslide-v1/benchmark/comparative-v1/summary.json rename to gloss-v1/benchmark/comparative-v1/summary.json index 65a679d..f210025 100644 --- a/acidslide-v1/benchmark/comparative-v1/summary.json +++ b/gloss-v1/benchmark/comparative-v1/summary.json @@ -1,9 +1,9 @@ { "cohort": { - "environment_attestation_sha256": "sha256:62695d02ec683aa3680f2db72ff6c17fcce14fccfb0b5367c75704d92db04602", - "grader_source_tree_sha256": "sha256:685ce0505346cf3e844d49ab25c51e906ec917d2bf6b6ea6bdb95e65d4e23d28", - "scoring_cohort_id": "sha256:13b3015b9e346d8eb4cd7f26fd13f3c551941a8b64a5bbd7e483063567bfff1f", - "scoring_manifest_sha256": "sha256:97a4df0aa45d198e0a1494d6c2501d8c9fb375c617aff1012588d843da2b20b8" + "environment_attestation_sha256": "sha256:343be52916e17b64dedb57e4975641e07d87c328666ad17bca12d18befd3aae7", + "grader_source_tree_sha256": "sha256:e07dee11eaec82eed021fcea2d9048552b3052e4aaf426cf66012e2aa804b422", + "scoring_cohort_id": "sha256:783dff67c40867c1091d52c73fac8b4fb6c3164e3c62a6dbefb188d4d3cc8808", + "scoring_manifest_sha256": "sha256:25d211020e39ece5ca4a9f8a5b78356391bee6f70281f75948e1498fcddc4111" }, "disclosure": { "attribution": "repository-owned path; no model attribution", @@ -11,7 +11,7 @@ "verification_label": "local artifact score; self-reported" }, "metric_definitions": { - "local_fidelity_percent": "AcidSlide weighted artifact score multiplied by 100", + "local_fidelity_percent": "Gloss weighted artifact score multiplied by 100", "mean_visual_ssim_percent": "mean slide SSIM against gold renders multiplied by 100", "native_weighted_pass_percent": "severity-weighted checklist pass rate excluding visual_ssim checks" }, @@ -20,21 +20,21 @@ "label": "Native precise", "mean_metrics": { "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.96, + "mean_visual_ssim_percent": 85.08, "native_weighted_pass_percent": 93.12 }, "path_id": "native-precise", "runs": [ { "artifacts": { - "artifact-context.json": "sha256:cff425a07faae7d62ccaed0eff024148ce653da8c6de09e31a8f6e4f8cf3af4b", - "deck.pptx": "sha256:0e6a0785641d5fb902e96babc1ba2c94f4e1d9498651744c92e4b5a18102ba15", - "generation.json": "sha256:e6c484b01cdebf049c692e9bb0f2e491b8338cfc0e5a6ee324c953117f501464", - "report.json": "sha256:2ba243d6579dd1801b8cc99dcea24401ecbbcac6be4de751dc4bf02a23c89014" + "artifact-context.json": "sha256:0220918d2a1c43f05f3ad91d1f901995465fad3be45b06fa8004137b865b201f", + "deck.pptx": "sha256:a87dad5dc8b87e28092b8812913ca994f8b29d988fb293d20667ae92bb9f3076", + "generation.json": "sha256:9d90bb3fc2a81f6ca33aa949f336654703774760f32cae3e71587384d226f268", + "report.json": "sha256:c2151c8bf3346f3d1c2dd82dc194fd0f6ec635da14379007efb553d323da61dd" }, "metrics": { "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.96, + "mean_visual_ssim_percent": 85.08, "native_weight_passed": 379, "native_weight_total": 407, "native_weighted_pass_percent": 93.12, @@ -47,14 +47,14 @@ }, { "artifacts": { - "artifact-context.json": "sha256:f6fe5cdd6f13bdca7b079716bf21aaa143d2fdfc1a73cce0ada05fbaf1c459ba", - "deck.pptx": "sha256:3716fa3bb950f2c8457b46e7b4b7cfd92bd28c9ddad20d3e370487666baf49be", - "generation.json": "sha256:affdd966a87e28ba5855112ffd284e3dc465de838f7b46c10611f67e7e6f4414", - "report.json": "sha256:33122b9974a8342ff037ea318cc3c8d0c77ab11b2c595ceb77a73fd4d5ae9120" + "artifact-context.json": "sha256:0caa2a28fc8275e9f85c0082a48039438cf8c697f051c76d147e02bde4397695", + "deck.pptx": "sha256:34d4ffe47bfbe3269e576404c9fa628545ca1ffa0d92f8e97c1415978aedae29", + "generation.json": "sha256:89c52949a2e1a9519831bb9b8236a2c9ba72576c5a3e8f226f336a174712289d", + "report.json": "sha256:125bfafe20811a7aa7617a9f65eb75671978a585b15962a8d5ff4f60b6b689fb" }, "metrics": { "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.96, + "mean_visual_ssim_percent": 85.08, "native_weight_passed": 379, "native_weight_total": 407, "native_weighted_pass_percent": 93.12, @@ -67,14 +67,14 @@ }, { "artifacts": { - "artifact-context.json": "sha256:e8880489fac4302cb865d762c6d0535ddaf851457fd85a9b5a317f673241da13", - "deck.pptx": "sha256:d670d5f2bb9c27e9a98a9c4a53785ab7c8e985344cc2d38163c447476a142c31", - "generation.json": "sha256:6274fb3454ff5ba46658d2ad566c51c9fc7f3b71c2f31b7b0ad0a8e6171d6fe9", - "report.json": "sha256:54138c064964efc53d03158adf55fec0e37968d67cb145ed4658e2ec6aee05f1" + "artifact-context.json": "sha256:3e58665e6fc19a41a2bb18f8497e6225a0b9b571ac09bd8f91951a95478127e8", + "deck.pptx": "sha256:610297e54513ad148f420513affff524e9215925dd3d1ab9cc77bfbdb1c8613b", + "generation.json": "sha256:e19c4f776a22570dcc2c12794d24d876e73fbec5af232ae3686aad0d6c8f518d", + "report.json": "sha256:ea27e1d38d7132071ca628b86b8df7e28d2bc7c02ba01a7ba61558a60831bb96" }, "metrics": { "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.96, + "mean_visual_ssim_percent": 85.08, "native_weight_passed": 379, "native_weight_total": 407, "native_weighted_pass_percent": 93.12, @@ -91,21 +91,21 @@ "label": "Native fast", "mean_metrics": { "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.95, + "mean_visual_ssim_percent": 85.07, "native_weighted_pass_percent": 93.12 }, "path_id": "native-fast", "runs": [ { "artifacts": { - "artifact-context.json": "sha256:624125cddbfd0be43b588b7a609fb7e260dd03d1a13e2b1e586d5d3016b6f339", - "deck.pptx": "sha256:15d3c4c216beaac91c99f620ae0cb00cda3122f079dae01b370de43d9d91793d", - "generation.json": "sha256:02a4a6979a4e76e3a47799546a81122ef789c61a2861afd8e425e57d7cbf448f", - "report.json": "sha256:39510c532c67b6f2747dd805fc76192e28c23ea0a51ba73b2d583375e37f0a2c" + "artifact-context.json": "sha256:90a4365016888ff1489c1570942c4e16cc89d940000b26b48854c3ef9dae7929", + "deck.pptx": "sha256:ba9d289918a65b7f68273e8a99a6e273a756a84561e4c67e0ad7b58075cd12f5", + "generation.json": "sha256:13c4381fa64056b24811ab72d26e70d24ddfabece65167ab4f61e92d704303ad", + "report.json": "sha256:35b79f0b3e22840ff36ce3adc49ef25fa174a9f1a7fe7bd94ff7c00748f18c3c" }, "metrics": { "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.95, + "mean_visual_ssim_percent": 85.07, "native_weight_passed": 379, "native_weight_total": 407, "native_weighted_pass_percent": 93.12, @@ -118,14 +118,14 @@ }, { "artifacts": { - "artifact-context.json": "sha256:a3e929e64626b4e0948fb92dda99c3682d93df50edd0911e86c6b658e4533a3d", - "deck.pptx": "sha256:8891cdafda52fba8c4c995af8654775783ee06b7b8a7ca6d443d5567636eda4d", - "generation.json": "sha256:fa50118325c2de1d08f4f475deb7a87fba9965d9228398362ae7d7c5fd72d57d", - "report.json": "sha256:567f14b3dd2d6ef5796b6255f121e3565ef7a23eb8fbe90e61e2908352fbe552" + "artifact-context.json": "sha256:4d1493074f568601cf160c841696e1102b44ddbbd7e75215060919614a883f2e", + "deck.pptx": "sha256:834ba91fe8f2a46bcd1cab774d0ed41382050dcd40069cd9df42331c168e0ac3", + "generation.json": "sha256:cf085e1d8b294ef60d017ead28cf003364a89bda6d802f53677700349dac6432", + "report.json": "sha256:998463b818faaa34eae63b033bd09486b089d80b8360a6250cc5a6f871bb8c1a" }, "metrics": { "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.95, + "mean_visual_ssim_percent": 85.07, "native_weight_passed": 379, "native_weight_total": 407, "native_weighted_pass_percent": 93.12, @@ -138,14 +138,14 @@ }, { "artifacts": { - "artifact-context.json": "sha256:d27609dc4c894210d4ff1a9a21b857b59856389f02efee8d32ec4ba1abe2aa0a", - "deck.pptx": "sha256:ce294e486f30cb38f70b0134da1d290eca21e1975fc9ac932c347252034f843a", - "generation.json": "sha256:80fdf8daf2b4bf91ee84cf23ddcdbe9df7714ba72f0acd2c022ba705fbd18483", - "report.json": "sha256:101fc4365073e7ad10658d4de0ad179c67686d715a6fe23dadca36066ef313d3" + "artifact-context.json": "sha256:e16f5c9a3b12b142dca0e021ec67ca000d37890b7293db1234bf129b5f49f905", + "deck.pptx": "sha256:d8620055d77810977724a665ff23185fd67788139a18b68a14c2deb861e405d3", + "generation.json": "sha256:ff0524bc31fd2dcf0db7002f21488e57df725d2e6ff750f582299952c01a0baf", + "report.json": "sha256:a7bb91b6093f0e9445d090b62a95d5d7880454956e078322aa2e15b4eaaf0b0b" }, "metrics": { "local_fidelity_percent": 67.68, - "mean_visual_ssim_percent": 84.95, + "mean_visual_ssim_percent": 85.07, "native_weight_passed": 379, "native_weight_total": 407, "native_weighted_pass_percent": 93.12, @@ -162,21 +162,21 @@ "label": "Visual precise", "mean_metrics": { "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.14, + "mean_visual_ssim_percent": 85.27, "native_weighted_pass_percent": 85.75 }, "path_id": "visual-precise", "runs": [ { "artifacts": { - "artifact-context.json": "sha256:d303cf7d835c41fae261dd50cd014e69328a74426a4afa065f5f8982affcc6da", - "deck.pptx": "sha256:b2a714b92dc2de09f186ecec21a5969efa2eb7a02317c9fae47c0ad06848d95b", - "generation.json": "sha256:2d40b52a9418540076a7d5e961b5c9ac881a9ef6313f87a9ddf7c647d54bfc43", - "report.json": "sha256:a42004dc24ff575ce436e1de0e4293abe28d8c5cb767c434aac30585b8f94acd" + "artifact-context.json": "sha256:3817220b6d83e60946fd6a124e8ddbaa9e23c572eb43240a8b65a51340898597", + "deck.pptx": "sha256:e2b42182ffefe25080a60f0a5389796a23430cbc134fd124afb50d894d00e494", + "generation.json": "sha256:900a65d7c195b125931004024fa10e71b299799f4d6f75ab86adad7462fc7ded", + "report.json": "sha256:99b225a8498369515eea0ca85b804f9b247b81a4f62d8780101e5e7469e872e4" }, "metrics": { "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.14, + "mean_visual_ssim_percent": 85.27, "native_weight_passed": 349, "native_weight_total": 407, "native_weighted_pass_percent": 85.75, @@ -189,14 +189,14 @@ }, { "artifacts": { - "artifact-context.json": "sha256:6378035e95191a48fe3f2885b31d6224bf95974a0d85586de7df42e2589dafa1", - "deck.pptx": "sha256:fa2173ea20374f27a2f464a7881eb12adf5fe774ddc027ee1cab4feeb74945a4", - "generation.json": "sha256:d7ade6a6c8bba2bf3cc219e705978f2295e0eb281029f41e6a28143eabc7ed10", - "report.json": "sha256:bf4f811438a96844210533d14c0160add6f7dd64726e17be488f8437bb12f982" + "artifact-context.json": "sha256:2da7acdc2befad0ebfff5fb25aa65a9c510d550d1af55891e4df857acf1fd2c6", + "deck.pptx": "sha256:858055f3d91fcfcff9e80ef9f9c32c8af96107fedafb0acb4137fbc455fc36b4", + "generation.json": "sha256:7444101f01fd698b06ea6079c5efba10f2159ff27400e0aac9e1da1b9c9f5c5d", + "report.json": "sha256:9a53392367db5bacb459207ce79a63f3e28cc4b7241778b6ca259d6d21e01d3b" }, "metrics": { "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.14, + "mean_visual_ssim_percent": 85.27, "native_weight_passed": 349, "native_weight_total": 407, "native_weighted_pass_percent": 85.75, @@ -209,14 +209,14 @@ }, { "artifacts": { - "artifact-context.json": "sha256:5f5a317fdc4ca3acf04ed304c90a227f12097274af3c018a34b41bc6dc32f6b3", - "deck.pptx": "sha256:c4e9ead5f6b485c35d1a7022f8e90ae40dfe0a8fa129baf6aecfddcebfb6e47e", - "generation.json": "sha256:1afbd5f7bf72ab7d507aa732b1a24de92068025afa8baed101cea5c261d51a9f", - "report.json": "sha256:4b5bc3444f00c6a06874eb5096437076c08fd4e722c060965b310b619cb093ea" + "artifact-context.json": "sha256:964462cdbc9bd489d1436dc5919581288cee42389d4e7319e05003b8cff6c961", + "deck.pptx": "sha256:4aa23e14982fd1607cc6cd9da6a3c8bd66158db0eaeb2e2ade9a43b6ac7a7c77", + "generation.json": "sha256:ac5c7821a4243998180841e18fa35e31f8c69dc1a13e0f8270620f5e6b5dd54c", + "report.json": "sha256:035155369c9fe250f6d9b83bec3a2358a2d4c403184feb4ed81d711bec343107" }, "metrics": { "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.14, + "mean_visual_ssim_percent": 85.27, "native_weight_passed": 349, "native_weight_total": 407, "native_weighted_pass_percent": 85.75, @@ -233,21 +233,21 @@ "label": "Visual fast", "mean_metrics": { "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.25, + "mean_visual_ssim_percent": 85.38, "native_weighted_pass_percent": 85.75 }, "path_id": "visual-fast", "runs": [ { "artifacts": { - "artifact-context.json": "sha256:c6af50efd29b1c2f92bc19a52d0fcc651b451a0416067085e4a6e2a360ac96eb", - "deck.pptx": "sha256:4de0f7adc60ebef9e236b889fac5fc0393de0a7876c673e1e3ed8621afab7549", - "generation.json": "sha256:57113fd1d7eec455972059e24fb41bb5a6020300f7b238c37ac32aa15195d2a9", - "report.json": "sha256:ca09550788c65d8ba023d7d45338e5260d7ca82b96be9b106267f8b8dd4364fc" + "artifact-context.json": "sha256:75c1ea320e3b9c8475d61981fd724c6dc187089b512147bdc806d360a25cbe01", + "deck.pptx": "sha256:46265d3dbc43335e8c72cbc9c13d47b00ce56f88bf9be959d6a98df9e4b94aeb", + "generation.json": "sha256:e3b1802f2f2dc888dca0aafcae72226f9a38d682457efea289b93737031a3507", + "report.json": "sha256:f0c93c9f7e34da42bdf9a8c4438fc8d94d7b101a12e6d5d7364af0d9920f9555" }, "metrics": { "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.25, + "mean_visual_ssim_percent": 85.38, "native_weight_passed": 349, "native_weight_total": 407, "native_weighted_pass_percent": 85.75, @@ -260,14 +260,14 @@ }, { "artifacts": { - "artifact-context.json": "sha256:f8607e1b94683884d178e0859b71035051110d533fc59af843521031b6dffbd7", - "deck.pptx": "sha256:cbc64ef5b68b856974258ffbbb5df4c1c909c3f1f582111312e2a7e3ba2b738b", - "generation.json": "sha256:5edf8c9018f429f52cc42526b2b14cfc1e0ec8d3f486b0fc5c3fcaffdcad1215", - "report.json": "sha256:19735c115c89e3b15e7c8280296707d8a3d90452c041049ce58c652b88404ce9" + "artifact-context.json": "sha256:a2f3d289d7b7d99c10d24dae605df875dfb3c1943f1316a4d518ff9f8f64aba6", + "deck.pptx": "sha256:c95ddd780e4a95fb88bf8af6d0b3ad00e3d3cb69b51fee5345d001899870e1dc", + "generation.json": "sha256:12b8bb9dc6d2d9345cf2f64e89b6444e0856b17a4f22d4dae0c1ab9517dac23d", + "report.json": "sha256:b98a8114d74a1f6b84a41a9f28c052b9ecc030e2142b19527787e681fcd32190" }, "metrics": { "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.25, + "mean_visual_ssim_percent": 85.38, "native_weight_passed": 349, "native_weight_total": 407, "native_weighted_pass_percent": 85.75, @@ -280,14 +280,14 @@ }, { "artifacts": { - "artifact-context.json": "sha256:c596022af0ea95e0e54ac119d443e06774d48c338134533d0d189fbf7bd0e2db", - "deck.pptx": "sha256:b93f48328e3c0289e95c623b59084998c202f7713f448b40f4408acea2c101f2", - "generation.json": "sha256:c92454b4a11d898b6f66d88e8df4a0440a3ae56854baf7b20ff856d2e147a276", - "report.json": "sha256:b2c57d3b920b29f58dc691c2a0229719d015879073321d3f9ebf256db7711bca" + "artifact-context.json": "sha256:cc5b3f1538e84f53cff5e4ed2aab74a667bd864777b9bb528a509a1b3dc4a2d0", + "deck.pptx": "sha256:571d66f4c0f8c028e59acf928cf5e9775dc0dd9a8f64233bbf5adf262c0f9584", + "generation.json": "sha256:bf2918b5192b870e9ff73d19e607593c233733fdd00fc2eb1c720312324949cf", + "report.json": "sha256:d2ed6b71edf9a2f5a98b93984173ec4f1132b00dd0d09c0273459a74eea3499c" }, "metrics": { "local_fidelity_percent": 62.32, - "mean_visual_ssim_percent": 85.25, + "mean_visual_ssim_percent": 85.38, "native_weight_passed": 349, "native_weight_total": 407, "native_weighted_pass_percent": 85.75, diff --git a/acidslide-v1/benchmark/comparative-v1/verify_bundle.py b/gloss-v1/benchmark/comparative-v1/verify_bundle.py similarity index 100% rename from acidslide-v1/benchmark/comparative-v1/verify_bundle.py rename to gloss-v1/benchmark/comparative-v1/verify_bundle.py diff --git a/gloss-v1/benchmark/deck/exports/slide-01.png b/gloss-v1/benchmark/deck/exports/slide-01.png new file mode 100644 index 0000000..f627ee6 Binary files /dev/null and b/gloss-v1/benchmark/deck/exports/slide-01.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-02.png b/gloss-v1/benchmark/deck/exports/slide-02.png similarity index 68% rename from acidslide-v1/benchmark/deck/exports/slide-02.png rename to gloss-v1/benchmark/deck/exports/slide-02.png index 6973145..0b58152 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-02.png and b/gloss-v1/benchmark/deck/exports/slide-02.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-03.png b/gloss-v1/benchmark/deck/exports/slide-03.png similarity index 93% rename from acidslide-v1/benchmark/deck/exports/slide-03.png rename to gloss-v1/benchmark/deck/exports/slide-03.png index a457eb4..7500209 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-03.png and b/gloss-v1/benchmark/deck/exports/slide-03.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-04.png b/gloss-v1/benchmark/deck/exports/slide-04.png similarity index 75% rename from acidslide-v1/benchmark/deck/exports/slide-04.png rename to gloss-v1/benchmark/deck/exports/slide-04.png index a898d70..8c9c60e 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-04.png and b/gloss-v1/benchmark/deck/exports/slide-04.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-05.png b/gloss-v1/benchmark/deck/exports/slide-05.png similarity index 84% rename from acidslide-v1/benchmark/deck/exports/slide-05.png rename to gloss-v1/benchmark/deck/exports/slide-05.png index 34a83dc..2acdcd7 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-05.png and b/gloss-v1/benchmark/deck/exports/slide-05.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-06.png b/gloss-v1/benchmark/deck/exports/slide-06.png similarity index 87% rename from acidslide-v1/benchmark/deck/exports/slide-06.png rename to gloss-v1/benchmark/deck/exports/slide-06.png index 1be9027..b21efe3 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-06.png and b/gloss-v1/benchmark/deck/exports/slide-06.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-07.png b/gloss-v1/benchmark/deck/exports/slide-07.png similarity index 97% rename from acidslide-v1/benchmark/deck/exports/slide-07.png rename to gloss-v1/benchmark/deck/exports/slide-07.png index 5dab24e..ef39dcf 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-07.png and b/gloss-v1/benchmark/deck/exports/slide-07.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-08.png b/gloss-v1/benchmark/deck/exports/slide-08.png similarity index 75% rename from acidslide-v1/benchmark/deck/exports/slide-08.png rename to gloss-v1/benchmark/deck/exports/slide-08.png index ae0d767..38c95e6 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-08.png and b/gloss-v1/benchmark/deck/exports/slide-08.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-09.png b/gloss-v1/benchmark/deck/exports/slide-09.png similarity index 89% rename from acidslide-v1/benchmark/deck/exports/slide-09.png rename to gloss-v1/benchmark/deck/exports/slide-09.png index c1ee448..4586cc0 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-09.png and b/gloss-v1/benchmark/deck/exports/slide-09.png differ diff --git a/gloss-v1/benchmark/deck/exports/slide-10.png b/gloss-v1/benchmark/deck/exports/slide-10.png new file mode 100644 index 0000000..188fd06 Binary files /dev/null and b/gloss-v1/benchmark/deck/exports/slide-10.png differ diff --git a/gloss-v1/benchmark/deck/exports/slide-11.png b/gloss-v1/benchmark/deck/exports/slide-11.png new file mode 100644 index 0000000..3a8a104 Binary files /dev/null and b/gloss-v1/benchmark/deck/exports/slide-11.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-12.png b/gloss-v1/benchmark/deck/exports/slide-12.png similarity index 51% rename from acidslide-v1/benchmark/deck/exports/slide-12.png rename to gloss-v1/benchmark/deck/exports/slide-12.png index eee0a33..1ac9f1c 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-12.png and b/gloss-v1/benchmark/deck/exports/slide-12.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-13.png b/gloss-v1/benchmark/deck/exports/slide-13.png similarity index 92% rename from acidslide-v1/benchmark/deck/exports/slide-13.png rename to gloss-v1/benchmark/deck/exports/slide-13.png index e5dcfce..8155899 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-13.png and b/gloss-v1/benchmark/deck/exports/slide-13.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-14.png b/gloss-v1/benchmark/deck/exports/slide-14.png similarity index 51% rename from acidslide-v1/benchmark/deck/exports/slide-14.png rename to gloss-v1/benchmark/deck/exports/slide-14.png index 1f9833f..820396b 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-14.png and b/gloss-v1/benchmark/deck/exports/slide-14.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-15.png b/gloss-v1/benchmark/deck/exports/slide-15.png similarity index 66% rename from acidslide-v1/benchmark/deck/exports/slide-15.png rename to gloss-v1/benchmark/deck/exports/slide-15.png index de62807..f415900 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-15.png and b/gloss-v1/benchmark/deck/exports/slide-15.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-16.png b/gloss-v1/benchmark/deck/exports/slide-16.png similarity index 76% rename from acidslide-v1/benchmark/deck/exports/slide-16.png rename to gloss-v1/benchmark/deck/exports/slide-16.png index b6ba3e4..22a4d78 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-16.png and b/gloss-v1/benchmark/deck/exports/slide-16.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-17.png b/gloss-v1/benchmark/deck/exports/slide-17.png similarity index 59% rename from acidslide-v1/benchmark/deck/exports/slide-17.png rename to gloss-v1/benchmark/deck/exports/slide-17.png index e1ed78f..6b2da11 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-17.png and b/gloss-v1/benchmark/deck/exports/slide-17.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-18.png b/gloss-v1/benchmark/deck/exports/slide-18.png similarity index 97% rename from acidslide-v1/benchmark/deck/exports/slide-18.png rename to gloss-v1/benchmark/deck/exports/slide-18.png index 372356c..28f10d8 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-18.png and b/gloss-v1/benchmark/deck/exports/slide-18.png differ diff --git a/acidslide-v1/benchmark/deck/exports/slide-19.png b/gloss-v1/benchmark/deck/exports/slide-19.png similarity index 90% rename from acidslide-v1/benchmark/deck/exports/slide-19.png rename to gloss-v1/benchmark/deck/exports/slide-19.png index a476e0c..ec5a00c 100644 Binary files a/acidslide-v1/benchmark/deck/exports/slide-19.png and b/gloss-v1/benchmark/deck/exports/slide-19.png differ diff --git a/gloss-v1/benchmark/deck/exports/slide-20.png b/gloss-v1/benchmark/deck/exports/slide-20.png new file mode 100644 index 0000000..2221550 Binary files /dev/null and b/gloss-v1/benchmark/deck/exports/slide-20.png differ diff --git a/acidslide-v1/benchmark/deck/gold/acidslide-v1-gold.pptx b/gloss-v1/benchmark/deck/gold/gloss-v1-gold.pptx similarity index 94% rename from acidslide-v1/benchmark/deck/gold/acidslide-v1-gold.pptx rename to gloss-v1/benchmark/deck/gold/gloss-v1-gold.pptx index 7d35810..41726e4 100644 Binary files a/acidslide-v1/benchmark/deck/gold/acidslide-v1-gold.pptx and b/gloss-v1/benchmark/deck/gold/gloss-v1-gold.pptx differ diff --git a/gloss-v1/benchmark/fixtures/expected-deck.json b/gloss-v1/benchmark/fixtures/expected-deck.json new file mode 100644 index 0000000..d41472a --- /dev/null +++ b/gloss-v1/benchmark/fixtures/expected-deck.json @@ -0,0 +1 @@ +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout2.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s1:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"subTitle","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"subTitle","table_dimensions":null},"node_id":"s1:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":2160000,"width":3600000,"x":5760000,"y":2880000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"25000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.25","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":2880000,"width":2880000,"x":5040000,"y":1440000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"40000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.4","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":3},{"asset_sha256":"sha256:63cab1432d0b4d8ab581c42b26d35e02ec28c32ada2e15267fd7eac760c04007","bbox":{"height":3060000,"width":5400000,"x":6120000,"y":720000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":true,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s1:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":3600000,"width":2160000,"x":6480000,"y":360000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"30000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.3","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s1:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"44","italic":null,"language":"en-US","rtl":false,"text":"Gloss v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":3977640,"width":10972800,"x":609480,"y":1604520},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"subTitle","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"subTitle","table_dimensions":null},"node_id":"s1:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":false,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"Benchmark for Slide Generation Fidelity"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s1:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s1:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"1"}],"z_index":9}],"part_name":"/ppt/slides/slide1.xml","relationships":[{"id":"rId1","target":"/ppt/media/image1.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/slideLayouts/slideLayout2.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":1},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s2:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s2:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s2:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Agenda"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3977640,"width":10972800,"x":609480,"y":1604520},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s2:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Opening Remarks"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Welcome and introductions"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Safety briefing"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Technical Deep Dive"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Architecture overview"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Performance benchmarks"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Security audit results"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Breakout Sessions"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Track A: Infrastructure"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Track B: Applications"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Closing & Next Steps"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":1260000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"09:00"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":2988000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":2988000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"11:30"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":4716000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":4716000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"14:00"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s2:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s2:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"2"}],"z_index":11}],"part_name":"/ppt/slides/slide2.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":2},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":648000,"width":5760000,"x":540000,"y":288000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s3:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Performance Metrics"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4320000,"width":10800000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":5,"rows":7}},"node_id":"s3:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Metric"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q1 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q2 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q3 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Target"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Latency (p50)"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"12ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"11ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"9ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"10ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Latency (p99)"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"89ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"72ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"58ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"75ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Throughput"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,200 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,450 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,890 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"2,000 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Error Rate"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.12%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.08%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.04%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.05%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Uptime"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.91%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.95%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.98%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.95%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Cache Hit"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"72%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"78%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"84%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"80%"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":792000,"width":2880000,"x":8640000,"y":5508000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s3:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide3.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":684000,"width":2736000,"x":8712000,"y":5544000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s3:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Throughput target"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"missed by 5.5%"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s3:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s3:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"3"}],"z_index":5}],"part_name":"/ppt/slides/slide3.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":3},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s4:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s4:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s4:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Revenue Growth"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":5040000,"width":7200000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":10,"series_count":2,"value_point_count":10},"chart_type":"barChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"barChart","table_dimensions":null},"node_id":"s4:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":3240000,"x":8280000,"y":1368000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Key Takeaways:"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":1512000,"width":3240000,"x":8280000,"y":1728000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Native Bullet List","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Total revenue up 38.2% YoY"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"APAC fastest-growing region"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"All regions exceeded targets"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":1774800},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":1956600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":2138400},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":648000,"width":1800000,"x":5220000,"y":3312000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"+62.9% YoY"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":648000,"width":1800000,"x":5220000,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"+84.6% YoY"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s4:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s4:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"4"}],"z_index":12}],"part_name":"/ppt/slides/slide4.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":4},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s5:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s5:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s5:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Our Team"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":540000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":540000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1440000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":1440000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":720000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Sarah Chen"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":720000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Chief Architect"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":864000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"15 years building distributed systems at scale"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Sarah Chen Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Sarah Chen"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Chief Architect"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"15 years building distributed systems at scale"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":4320000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n4.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":5220000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n4.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":5220000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":4500000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Marcus Rivera"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":4500000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Head of Design"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":4644000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Formerly at Apple, obsessed with pixel-perfect interfaces"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Marcus Rivera Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Marcus Rivera"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Head of Design"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Formerly at Apple, obsessed with pixel-perfect interfaces"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":8100000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":8100000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n5.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":9000000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n5.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":9000000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":8280000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Yuki Tanaka"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":8280000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"ML Engineering Lead"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":8424000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PhD in NLP, built the model serving infrastructure"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Yuki Tanaka Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Yuki Tanaka"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"ML Engineering Lead"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PhD in NLP, built the model serving infrastructure"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s5:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s5:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"5"}],"z_index":7}],"part_name":"/ppt/slides/slide5.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":5},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":432000,"width":3420000,"x":432000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"Global Perspectives"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":3060000,"width":3240000,"x":432000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"The rapid advancement of language models"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"has transformed how organizations approach"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"document generation. From financial reports"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"to marketing materials, AI-driven content"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"creation is reshaping every industry."}],"z_index":1},{"asset_sha256":null,"bbox":{"height":735120,"width":3420000,"x":4320000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Noto Sans Arabic","font_size_pt":"24","italic":null,"language":"hi-IN","rtl":true,"text":"وجهات نظر عالمية"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3102840,"width":3240000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"لقد أدى التقدم السريع في نماذج اللغة إلى تحويل"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"كيفية تعامل المؤسسات مع إنشاء المستندات. من"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"التقارير المالية إلى المواد التسويقية، يعيد إنشاء"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"المحتوى المدعوم بالذكاء الاصطناعي تشكيل كل صناعة."}],"z_index":3},{"asset_sha256":null,"bbox":{"height":532440,"width":3420000,"x":8280000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Noto Sans CJK JP","font_size_pt":"24","italic":null,"language":"zh-CN","rtl":false,"text":"グローバルな視点"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":3060000,"width":3420000,"x":8280000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"言語モデルの急速な進歩により、組織がドキュメント生成に"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"取り組む方法が変革されました。財務報告からマーケティング"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"資料まで、"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"AI"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"主導のコンテンツ作成はあらゆる産業を"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"再形成しています。"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":4680000,"width":0,"x":4032000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s6:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":4680000,"width":0,"x":8100000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s6:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":1440000,"width":4320000,"x":5400000,"y":4680000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"90000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.9","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s6:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":1152000,"width":4032000,"x":5544000,"y":4824000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"AI-generated slides must handle RTL text,"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"CJK line breaking, and mixed scripts correctly."}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s6:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s6:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"6"}],"z_index":11}],"part_name":"/ppt/slides/slide6.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":6},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s7:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Image Handling"}],"z_index":0},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2880000,"width":3600000,"x":540000,"y":900000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":2362,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":1},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2880000,"width":2880000,"x":4680000,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s7:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":2},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":2880000,"width":3600000,"x":8100000,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s7:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":3600000,"x":540000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Full panorama crop"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":4680000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Circle-masked detail"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":324000,"width":3600000,"x":8100000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rounded corner crop"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":2160000,"width":2160000,"x":5040000,"y":1260000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":"50000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.5","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":504000,"width":1944000,"x":5148000,"y":2016000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"PREVIEW"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s7:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s7:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"7"}],"z_index":10}],"part_name":"/ppt/slides/slide7.xml","relationships":[{"id":"rId1","target":"/ppt/media/image2.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/media/image3.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/media/image4.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId4","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":7},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1080000,"width":12192120,"x":0,"y":5400000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"gradFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s8:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s8:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Depth & Layering"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":3240000,"width":5400000,"x":1440000,"y":1800000},"children":[{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":1440000,"y":2160000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":2520000,"y":1800000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 2"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3600000,"width":6480000,"x":3600000,"y":720000},"children":[{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":3600000,"y":1440000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 3"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"55000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.55","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 4"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":5760000,"y":720000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"90000","color":{"kind":"srgbClr","value":"ffffff"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.9","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 5"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 3"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 4"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 5"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s8:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s8:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"8"}],"z_index":5}],"part_name":"/ppt/slides/slide8.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":8},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s9:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide9.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s9:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide9.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s9:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"API Reference"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":252000,"width":5040000,"x":648000,"y":1008000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Fixed Size (clips)"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":252000,"width":5040000,"x":6480000,"y":1008000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Auto-Shrink (fits)"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":5040000,"width":5040000,"x":648000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"GET /api/v1/submissions"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Authorization: Bearer YOUR_TOKEN_HERE"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Content-Type: application/json"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Query Parameters:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"model_id string required Filter by model"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"tier integer optional 1, 2, or 3"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"status string optional queued|grading|completed"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"limit integer optional Default: 20, max: 100"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"offset integer optional Default: 0"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Response 200:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"submissions\": ["},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"id\": \"sub_abc123\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"model_id\": \"gpt-4o\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"tier\": 3,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"status\": \"completed\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"fidelity_score\": 0.847,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"created_at\": \"2025-01-15T10:30:00Z\""},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"],"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"total\": 142,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"has_more\": true"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"NOTE TO DESIGNER: The parentheses above represent"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces in the actual slide text. When"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"typing this content into the slide, use standard"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces, i.e., the opening and closing"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"brace characters. They are written as parentheses"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"here only because this brief avoids those characters."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":5040000,"width":5040000,"x":6480000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"GET /api/v1/submissions"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Authorization: Bearer YOUR_TOKEN_HERE"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Content-Type: application/json"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Query Parameters:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"model_id string required Filter by model"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"tier integer optional 1, 2, or 3"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"status string optional queued|grading|completed"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"limit integer optional Default: 20, max: 100"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"offset integer optional Default: 0"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Response 200:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"submissions\": ["},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"id\": \"sub_abc123\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"model_id\": \"gpt-4o\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"tier\": 3,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"status\": \"completed\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"fidelity_score\": 0.847,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"created_at\": \"2025-01-15T10:30:00Z\""},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"],"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"total\": 142,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"has_more\": true"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"NOTE TO DESIGNER: The parentheses above represent"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces in the actual slide text. When"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"typing this content into the slide, use standard"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces, i.e., the opening and closing"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"brace characters. They are written as parentheses"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"here only because this brief avoids those characters."},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Error Responses:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"401 Unauthorized - Invalid or expired token"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"403 Forbidden - Rate limit exceeded"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"404 Not Found - Submission not found"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"422 Unprocessable - Invalid parameters"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"500 Internal Server Error - Contact support"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Rate Limits:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Free tier: 10 req/min, 100 req/hour"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Pro tier: 60 req/min, 1000 req/hour"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Enterprise: Custom"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s9:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s9:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"9"}],"z_index":8}],"part_name":"/ppt/slides/slide9.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":9},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s10:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"System Architecture"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":720000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Client App"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"API Gateway"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3060000,"width":7560000,"x":2160000,"y":3240000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":4680000,"x":3600000,"y":3240000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":3600000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":6480000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":7560000,"x":2160000,"y":5220000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":2160000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":7920000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":360,"width":2520360,"x":2520000,"y":1620000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":1080360,"width":1440360,"x":4500000,"y":2160000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"bentConnector3","table_dimensions":null},"node_id":"s10:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":1080360,"width":360,"x":5940000,"y":2160000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":360,"width":360360,"x":6480000,"y":3780000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[4]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":1440360,"width":540360,"x":6840000,"y":4320000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[5]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":360,"width":1080360,"x":3960000,"y":5760000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[6]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":360,"width":1080360,"x":6840000,"y":5760000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[7]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":252000,"width":792000,"x":3060000,"y":1296000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"HTTPS"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":252000,"width":900000,"x":3780000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"JWT verify"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":252000,"width":792000,"x":5400000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Enqueue"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":252000,"width":3960000,"x":3960000,"y":2808000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Processing Layer"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":252000,"width":4680000,"x":3600000,"y":4824000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Persistence Layer"}],"z_index":15},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s10:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s10:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"10"}],"z_index":17}],"part_name":"/ppt/slides/slide10.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":10},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s11:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s11:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s11:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Brand Colors"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1080000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":1080000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Primary"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":4320000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Secondary"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":7560000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":7560000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Accent 1"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1080000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"ff6b35"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":1080000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":4320000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"7b2d8e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":4320000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":7560000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"3d9970"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":13},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":7560000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[15]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":648000,"width":10440000,"x":720000,"y":5508000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[16]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Top row uses theme color references. Bottom row uses explicit RGB values."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Changing the theme will update the top row but not the bottom row."}],"z_index":15},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s11:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[17]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s11:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[18]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"11"}],"z_index":17}],"part_name":"/ppt/slides/slide11.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":11},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s12:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide12.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s12:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide12.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s12:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Document Fields"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":1368000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Current slide: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":""}],"z_index":3},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":1368000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Live slide number field (not static text)"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":2592000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"datetime","field_types":["datetime"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Generated: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"1/3/-1"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":2592000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Fixed date/time field"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":3816000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Gloss Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":3816000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Footer from master placeholder"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Slide 12"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Static text comparison"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s12:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s12:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"12"}],"z_index":12}],"part_name":"/ppt/slides/slide12.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":12},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s13:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Composite Stress"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":3600000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":6,"series_count":1,"value_point_count":6},"chart_type":"pieChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"pieChart","table_dimensions":null},"node_id":"s13:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":2520000,"width":3240000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":3,"rows":4}},"node_id":"s13:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[2]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Check"},{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Status"},{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Weight"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Schema"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"3"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rendering"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"2"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Assets"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Review"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"1"}],"z_index":2},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2160000,"width":2880000,"x":8280000,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":0,"l":2362,"r":0,"t":0},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":466920,"width":6840000,"x":4500000,"y":3960000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"الهيكل والمحتوى والعرض في اختبار واحد"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":648000,"width":2520000,"x":900000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":432000,"width":2376000,"x":972000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE CHART"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":648000,"width":2520000,"x":4680000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":432000,"width":2376000,"x":4752000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE TABLE"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":648000,"width":2700000,"x":8460000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":432000,"width":2556000,"x":8532000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"APPROVED ASSET"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":0,"x":2160000,"y":3960000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":900000,"width":0,"x":5940000,"y":3600000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":12},{"asset_sha256":null,"bbox":{"height":1260000,"width":0,"x":9720000,"y":3240000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":13},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s13:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s13:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"13"}],"z_index":15}],"part_name":"/ppt/slides/slide13.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart2.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/media/image5.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":13},{"layout_part":"/ppt/slideLayouts/slideLayout4.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s14:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":4426920,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s14:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":3288240,"width":4426920,"x":5152680,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s14:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s14:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"RTL Systems Review"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":4500000,"width":0,"x":6084000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s14:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":4320000,"width":5040000,"x":540000,"y":1152000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s14:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"مراجعة الأنظمة الموزعة"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"دقة العرض هي أساس المقارنة بين الأنظمة."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"سلامة البنية تحافظ على المعنى والتفاعل."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"The"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" الذكاء الاصطناعي "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"revolution"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" تتطلب نصاً ثنائي الاتجاه."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"الإصدار "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"Gloss v1"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" يختبر التوافق."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"يجب الحفاظ على علامات الترقيم وترتيب "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"Unicode"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":4320000,"width":4860000,"x":6660000,"y":1152000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s14:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"A structural benchmark must preserve meaning and direction."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Rendering alone cannot prove native editability."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Bidirectional runs must retain their Unicode order."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Mirrored padding makes the comparison deliberate."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"The benchmark records both artifact and visual fidelity."}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s14:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s14:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"14"}],"z_index":8}],"part_name":"/ppt/slides/slide14.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout4.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":14},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s15:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Rotation Atlas"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":0,"width":10980000,"x":540000,"y":2880000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"line","table_dimensions":null},"node_id":"s15:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":360000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":540000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Baseline 0°"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":2520000,"y":2519640},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n4","rotation_degrees":"315","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":2700000,"y":2609640},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n5","rotation_degrees":"315","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Diagonal 45°"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":4680000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n6","rotation_degrees":"27","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":4860000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n7","rotation_degrees":"27","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Vertical 90°"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":6839640,"y":2519640},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n8","rotation_degrees":"225","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":7019640,"y":2609640},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n9","rotation_degrees":"225","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Reverse 135°"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":9000000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n10","rotation_degrees":"9","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":9180000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n11","rotation_degrees":"9","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Vertical 270°"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s15:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s15:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"15"}],"z_index":13}],"part_name":"/ppt/slides/slide15.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":15},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":3600000,"width":3600000,"x":-1080000,"y":-720000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Negative Circle","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s16:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":2160000,"width":4320000,"x":10392120,"y":2160000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Right Bleed","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":5760000,"x":2880000,"y":-360000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Top Bleed","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s16:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Beyond the Frame"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":648000,"width":5400000,"x":3240000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"3","italic":null,"language":"en-US","rtl":false,"text":"INTENTIONAL BLEED"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":504000,"width":6480000,"x":2700000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Negative coordinates are part of the composition."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s16:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s16:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"16"}],"z_index":7}],"part_name":"/ppt/slides/slide16.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":16},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s17:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Nested Systems"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4680000,"width":9720000,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":1893240,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":1080000,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.0.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":1312200,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"A1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.0.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"A1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":1080000,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":1893240,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":1080000,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.0.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":1312200,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"A2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.0.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"A2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"INPUT Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":4758840,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":4758840,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":5572080,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":4758840,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.1.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897200,"x":4991400,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"B1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.1.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"B1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":4758840,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":5572080,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":4758840,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.1.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897200,"x":4991400,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"B2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.1.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"B2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PROCESS Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":8437680,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":8437680,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":9250920,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":8437680,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.2.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":8670240,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"C1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.2.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"C1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":8437680,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":9250920,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":8437680,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.2.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":8670240,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"C2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.2.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"C2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"OUTPUT Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Nested Systems Outer Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s17:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s17:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"17"}],"z_index":3}],"part_name":"/ppt/slides/slide17.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":17},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s18:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Three Cities / "},{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"zh-CN","rtl":false,"text":"三つの都市"}],"z_index":0},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":5220000,"width":3420000,"x":4386240,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"Center Column Tiled Pattern","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":1},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":1260000,"width":3420000,"x":642240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":3543,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":642240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Systems"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":642240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Cities expose the systems beneath daily life: transport, energy, data, and the people who connect them."}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":642240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Structure makes the invisible legible.”"}],"z_index":5},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":1260000,"width":3420000,"x":4386240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":12283,"l":0,"r":0,"t":12283},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[2]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":4386240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"zh-CN","rtl":false,"text":"システム"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":4386240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"生成されたスライドは構造と意味を保持します。"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"編集可能な構造が共有された理解を支えます。"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":4386240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"構造は意味を運びます。”"}],"z_index":9},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":1260000,"width":3420000,"x":8130240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":3543,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[3]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":8130240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Shared Futures"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":8130240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"A common visual language lets teams compare evidence, preserve intent, and build toward shared futures."}],"z_index":12},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":8130240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Consistency is a form of trust.”"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s18:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s18:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"18"}],"z_index":15}],"part_name":"/ppt/slides/slide18.xml","relationships":[{"id":"rId1","target":"/ppt/media/image6.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/media/image7.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/media/image8.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId4","target":"/ppt/media/image9.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId5","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":18},{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s19:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s19:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s19:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Design System Audit"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Typography"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":547920,"width":3240000,"x":3060000,"y":972000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Carlito 36"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":396000,"width":3600000,"x":7380000,"y":1044000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Liberation Sans 18"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":2052000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Palette"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":3060000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":5220000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":7380000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":3024000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Spacing"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":3060000,"y":2952000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":4680000,"y":2952000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":12},{"asset_sha256":null,"bbox":{"height":432000,"width":2880000,"x":6480000,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"0.5cm token"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":3996000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[15]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Line Weight"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":6120000,"x":3060000,"y":4140000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"line","table_dimensions":null},"node_id":"s19:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[16]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":15},{"asset_sha256":null,"bbox":{"height":396000,"width":1800000,"x":9540000,"y":3942000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[17]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"0.5pt teal rule"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":4968000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[18]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Navigation"}],"z_index":17},{"asset_sha256":null,"bbox":{"height":468000,"width":3240000,"x":3060000,"y":4860000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":["/ppt/slides/slide1.xml"],"name":"Return to Cover Internal Link","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n18","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[19]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Return to Cover"}],"z_index":18},{"asset_sha256":null,"bbox":{"height":468000,"width":3240000,"x":7380000,"y":4860000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":["/ppt/slides/slide5.xml"],"name":"Meet the Team Internal Link","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n19","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[20]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Meet the Team"}],"z_index":19},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s19:n20","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[21]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":20},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s19:n21","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[22]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"19"}],"z_index":21}],"part_name":"/ppt/slides/slide19.xml","relationships":[{"id":"rId1","target":"/ppt/slides/slide1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"},{"id":"rId2","target":"/ppt/slides/slide5.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":19},{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s20:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Gloss Synthesis"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1980000,"width":3780000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":9,"series_count":3,"value_point_count":9},"chart_type":"lineChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Native Line Chart","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"lineChart","table_dimensions":null},"node_id":"s20:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1620000,"width":6840000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Native Table","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":6,"rows":3}},"node_id":"s20:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Tier"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Slides"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Checks"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"SSIM"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Schema"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Status"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"L1"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"5"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"70"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"0.9999"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Ready"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"L3"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"20"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"280"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"0.9999"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Ready"}],"z_index":2},{"asset_sha256":"sha256:63cab1432d0b4d8ab581c42b26d35e02ec28c32ada2e15267fd7eac760c04007","bbox":{"height":1512000,"width":2340000,"x":4680000,"y":2880000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":0,"l":3937,"r":0,"t":0},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Approved Hero","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":518760,"width":1800000,"x":7380000,"y":2844000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Noto Sans Arabic","font_size_pt":"16","italic":null,"language":"hi-IN","rtl":true,"text":"اختبار شامل"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":396000,"width":1800000,"x":7380000,"y":3312000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Noto Sans CJK JP","font_size_pt":"16","italic":null,"language":"zh-CN","rtl":false,"text":"総合テスト"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":468000,"width":1800000,"x":576000,"y":3636000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Rotated Text","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n6","rotation_degrees":"45","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"ROTATED"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":1296000,"width":2340000,"x":2160000,"y":3528000},"children":[{"asset_sha256":null,"bbox":{"height":1116000,"width":2340000,"x":2160000,"y":3528000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1080000,"x":2160000,"y":3528000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":936000,"width":1260000,"x":2736000,"y":3708000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s20:n7.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1080000,"x":3420000,"y":3528000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Overlap Inner Group","opacity":"1","paragraph_properties":[],"parent_group_path":["s20:n7"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":288000,"width":1872000,"x":2484000,"y":4536000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s20:n7"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n7.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"2-LEVEL GROUP"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Overlap Outer Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"2-LEVEL GROUP"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":792000,"width":2520000,"x":9000000,"y":4032000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"gradFill"},"hyperlink_targets":[],"name":"Synthesis Navy Teal Gradient","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s20:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":504000,"width":2304000,"x":9108000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE GRADIENT"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":900000,"width":4500000,"x":540000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Native Bullet List","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Native structure retained"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Multilingual meaning preserved"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rendered fidelity verified"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":8100000,"y":5148000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Live Slide Number Field","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Live slide: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":""}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s20:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s20:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"20"}],"z_index":13}],"part_name":"/ppt/slides/slide20.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/media/image10.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":20}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-01.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-01.json similarity index 64% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-01.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-01.json index 9c45c51..e171bfc 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-01.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-01.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout2.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s1:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"subTitle","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"subTitle","table_dimensions":null},"node_id":"s1:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":2160000,"width":3600000,"x":5760000,"y":2880000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"25000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.25","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":2880000,"width":2880000,"x":5040000,"y":1440000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"40000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.4","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":3},{"asset_sha256":"sha256:63cab1432d0b4d8ab581c42b26d35e02ec28c32ada2e15267fd7eac760c04007","bbox":{"height":3060000,"width":5400000,"x":6120000,"y":720000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":true,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s1:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":3600000,"width":2160000,"x":6480000,"y":360000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"30000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.3","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s1:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"44","italic":null,"language":"en-US","rtl":false,"text":"AcidSlide v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":3977640,"width":10972800,"x":609480,"y":1604520},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"subTitle","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"subTitle","table_dimensions":null},"node_id":"s1:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":false,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"Benchmark for Slide Generation Fidelity"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s1:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s1:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"1"}],"z_index":9}],"part_name":"/ppt/slides/slide1.xml","relationships":[{"id":"rId1","target":"/ppt/media/image1.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/slideLayouts/slideLayout2.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":1}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout2.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s1:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"subTitle","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"subTitle","table_dimensions":null},"node_id":"s1:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":2160000,"width":3600000,"x":5760000,"y":2880000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"25000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.25","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":2880000,"width":2880000,"x":5040000,"y":1440000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"40000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.4","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":3},{"asset_sha256":"sha256:63cab1432d0b4d8ab581c42b26d35e02ec28c32ada2e15267fd7eac760c04007","bbox":{"height":3060000,"width":5400000,"x":6120000,"y":720000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":true,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s1:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":3600000,"width":2160000,"x":6480000,"y":360000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"30000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.3","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s1:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide1.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s1:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"44","italic":null,"language":"en-US","rtl":false,"text":"Gloss v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":3977640,"width":10972800,"x":609480,"y":1604520},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"subTitle","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"subTitle","table_dimensions":null},"node_id":"s1:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":false,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"Benchmark for Slide Generation Fidelity"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s1:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s1:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide1.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"1"}],"z_index":9}],"part_name":"/ppt/slides/slide1.xml","relationships":[{"id":"rId1","target":"/ppt/media/image1.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/slideLayouts/slideLayout2.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":1}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-02.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-02.json similarity index 91% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-02.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-02.json index 093e4d8..f166a86 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-02.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-02.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s2:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s2:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s2:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Agenda"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3977640,"width":10972800,"x":609480,"y":1604520},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s2:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Opening Remarks"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Welcome and introductions"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Safety briefing"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Technical Deep Dive"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Architecture overview"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Performance benchmarks"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Security audit results"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Breakout Sessions"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Track A: Infrastructure"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Track B: Applications"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Closing & Next Steps"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":1260000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"09:00"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":2988000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":2988000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"11:30"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":4716000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":4716000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"14:00"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s2:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s2:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"2"}],"z_index":11}],"part_name":"/ppt/slides/slide2.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":2}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s2:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s2:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s2:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Agenda"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3977640,"width":10972800,"x":609480,"y":1604520},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s2:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Opening Remarks"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Welcome and introductions"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Safety briefing"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Technical Deep Dive"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Architecture overview"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Performance benchmarks"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Security audit results"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Breakout Sessions"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Track A: Infrastructure"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Track B: Applications"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Closing & Next Steps"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":1260000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"09:00"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":2988000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":2988000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"11:30"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":360000,"width":360000,"x":9936000,"y":4716000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s2:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide2.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":360000,"width":1080000,"x":10440000,"y":4716000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s2:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"14:00"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s2:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s2:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide2.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"2"}],"z_index":11}],"part_name":"/ppt/slides/slide2.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":2}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-03.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-03.json similarity index 91% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-03.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-03.json index 00169d0..1e72bc7 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-03.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-03.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":648000,"width":5760000,"x":540000,"y":288000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s3:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Performance Metrics"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4320000,"width":10800000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":5,"rows":7}},"node_id":"s3:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Metric"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q1 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q2 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q3 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Target"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Latency (p50)"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"12ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"11ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"9ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"10ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Latency (p99)"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"89ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"72ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"58ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"75ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Throughput"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,200 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,450 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,890 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"2,000 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Error Rate"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.12%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.08%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.04%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.05%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Uptime"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.91%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.95%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.98%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.95%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Cache Hit"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"72%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"78%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"84%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"80%"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":792000,"width":2880000,"x":8640000,"y":5508000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s3:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide3.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":684000,"width":2736000,"x":8712000,"y":5544000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s3:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Throughput target"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"missed by 5.5%"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s3:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s3:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"3"}],"z_index":5}],"part_name":"/ppt/slides/slide3.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":3}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":648000,"width":5760000,"x":540000,"y":288000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s3:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Performance Metrics"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4320000,"width":10800000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":5,"rows":7}},"node_id":"s3:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Metric"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q1 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q2 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Q3 2024"},{"bold":true,"font_family":"Carlito","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Target"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Latency (p50)"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"12ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"11ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"9ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"10ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Latency (p99)"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"89ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"72ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"58ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"75ms"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Throughput"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,200 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,450 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"1,890 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"2,000 rps"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Error Rate"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.12%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.08%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.04%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≤"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"0.05%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Uptime"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.91%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.95%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.98%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"99.95%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Cache Hit"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"72%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"78%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"84%"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"≥"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"80%"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":792000,"width":2880000,"x":8640000,"y":5508000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s3:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide3.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":684000,"width":2736000,"x":8712000,"y":5544000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s3:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Throughput target"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"missed by 5.5%"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s3:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s3:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide3.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"3"}],"z_index":5}],"part_name":"/ppt/slides/slide3.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":3}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-04.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-04.json similarity index 89% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-04.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-04.json index ab2e556..8614ce3 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-04.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-04.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s4:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s4:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s4:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Revenue Growth"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":5040000,"width":7200000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":10,"series_count":2,"value_point_count":10},"chart_type":"barChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"barChart","table_dimensions":null},"node_id":"s4:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":3240000,"x":8280000,"y":1368000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Key Takeaways:"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":1512000,"width":3240000,"x":8280000,"y":1728000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Native Bullet List","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Total revenue up 38.2% YoY"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"APAC fastest-growing region"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"All regions exceeded targets"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":1774800},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":1956600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":2138400},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":648000,"width":1800000,"x":5220000,"y":3312000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"+62.9% YoY"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":648000,"width":1800000,"x":5220000,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"+84.6% YoY"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s4:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s4:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"4"}],"z_index":12}],"part_name":"/ppt/slides/slide4.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":4}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s4:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s4:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s4:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Revenue Growth"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":5040000,"width":7200000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":10,"series_count":2,"value_point_count":10},"chart_type":"barChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"barChart","table_dimensions":null},"node_id":"s4:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide4.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":3240000,"x":8280000,"y":1368000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Key Takeaways:"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":1512000,"width":3240000,"x":8280000,"y":1728000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Native Bullet List","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"▸"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Total revenue up 38.2% YoY"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"APAC fastest-growing region"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"All regions exceeded targets"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":1774800},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":1956600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":216000,"width":252000,"x":8402400,"y":2138400},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"8","italic":null,"language":"en-US","rtl":false,"text":"►"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":648000,"width":1800000,"x":5220000,"y":3312000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"+62.9% YoY"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":648000,"width":1800000,"x":5220000,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s4:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"+84.6% YoY"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s4:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s4:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide4.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"4"}],"z_index":12}],"part_name":"/ppt/slides/slide4.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":4}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-05.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-05.json similarity index 95% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-05.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-05.json index a513094..6d90700 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-05.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-05.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s5:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s5:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s5:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Our Team"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":540000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":540000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1440000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":1440000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":720000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Sarah Chen"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":720000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Chief Architect"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":864000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"15 years building distributed systems at scale"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Sarah Chen Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Sarah Chen"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Chief Architect"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"15 years building distributed systems at scale"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":4320000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n4.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":5220000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n4.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":5220000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":4500000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Marcus Rivera"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":4500000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Head of Design"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":4644000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Formerly at Apple, obsessed with pixel-perfect interfaces"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Marcus Rivera Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Marcus Rivera"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Head of Design"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Formerly at Apple, obsessed with pixel-perfect interfaces"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":8100000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":8100000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n5.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":9000000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n5.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":9000000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":8280000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Yuki Tanaka"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":8280000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"ML Engineering Lead"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":8424000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PhD in NLP, built the model serving infrastructure"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Yuki Tanaka Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Yuki Tanaka"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"ML Engineering Lead"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PhD in NLP, built the model serving infrastructure"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s5:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s5:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"5"}],"z_index":7}],"part_name":"/ppt/slides/slide5.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":5}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s5:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s5:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s5:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Our Team"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":540000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":540000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1440000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":1440000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":720000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Sarah Chen"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":720000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Chief Architect"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":864000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n3.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"15 years building distributed systems at scale"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Sarah Chen Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Sarah Chen"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Chief Architect"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"15 years building distributed systems at scale"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":4320000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n4.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":5220000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n4.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":5220000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":4500000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Marcus Rivera"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":4500000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Head of Design"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":4644000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n4"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n4.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Formerly at Apple, obsessed with pixel-perfect interfaces"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Marcus Rivera Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Marcus Rivera"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Head of Design"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Formerly at Apple, obsessed with pixel-perfect interfaces"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":8100000,"y":1188000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":3240000,"x":8100000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"161f2e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n5.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[1]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":9000000,"y":1512000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s5:n5.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[2]","source_part":"/ppt/slides/slide5.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":9000000,"y":1872000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":360000,"width":2880000,"x":8280000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Yuki Tanaka"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":8280000,"y":3672000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"ML Engineering Lead"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":2592000,"x":8424000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s5:n5"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s5:n5.5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]/p:sp[6]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PhD in NLP, built the model serving infrastructure"}],"z_index":5}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Yuki Tanaka Team Card","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s5:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[3]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Photo"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Yuki Tanaka"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"ML Engineering Lead"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PhD in NLP, built the model serving infrastructure"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s5:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s5:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide5.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"5"}],"z_index":7}],"part_name":"/ppt/slides/slide5.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":5}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-06.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-06.json similarity index 91% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-06.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-06.json index 1c38db4..1e7d1ff 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-06.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-06.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":432000,"width":3420000,"x":432000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"Global Perspectives"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":3060000,"width":3240000,"x":432000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"The rapid advancement of language models"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"has transformed how organizations approach"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"document generation. From financial reports"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"to marketing materials, AI-driven content"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"creation is reshaping every industry."}],"z_index":1},{"asset_sha256":null,"bbox":{"height":735120,"width":3420000,"x":4320000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Noto Sans Arabic","font_size_pt":"24","italic":null,"language":"hi-IN","rtl":true,"text":"وجهات نظر عالمية"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3102840,"width":3240000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"لقد أدى التقدم السريع في نماذج اللغة إلى تحويل"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"كيفية تعامل المؤسسات مع إنشاء المستندات. من"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"التقارير المالية إلى المواد التسويقية، يعيد إنشاء"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"المحتوى المدعوم بالذكاء الاصطناعي تشكيل كل صناعة."}],"z_index":3},{"asset_sha256":null,"bbox":{"height":532440,"width":3420000,"x":8280000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Noto Sans CJK JP","font_size_pt":"24","italic":null,"language":"zh-CN","rtl":false,"text":"グローバルな視点"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":3060000,"width":3420000,"x":8280000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"言語モデルの急速な進歩により、組織がドキュメント生成に"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"取り組む方法が変革されました。財務報告からマーケティング"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"資料まで、"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"AI"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"主導のコンテンツ作成はあらゆる産業を"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"再形成しています。"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":4680000,"width":0,"x":4032000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s6:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":4680000,"width":0,"x":8100000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s6:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":1440000,"width":4320000,"x":5400000,"y":4680000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"90000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.9","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s6:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":1152000,"width":4032000,"x":5544000,"y":4824000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"AI-generated slides must handle RTL text,"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"CJK line breaking, and mixed scripts correctly."}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s6:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s6:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"6"}],"z_index":11}],"part_name":"/ppt/slides/slide6.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":6}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":432000,"width":3420000,"x":432000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"Global Perspectives"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":3060000,"width":3240000,"x":432000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"The rapid advancement of language models"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"has transformed how organizations approach"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"document generation. From financial reports"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"to marketing materials, AI-driven content"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"creation is reshaping every industry."}],"z_index":1},{"asset_sha256":null,"bbox":{"height":735120,"width":3420000,"x":4320000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Noto Sans Arabic","font_size_pt":"24","italic":null,"language":"hi-IN","rtl":true,"text":"وجهات نظر عالمية"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3102840,"width":3240000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"لقد أدى التقدم السريع في نماذج اللغة إلى تحويل"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"كيفية تعامل المؤسسات مع إنشاء المستندات. من"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"التقارير المالية إلى المواد التسويقية، يعيد إنشاء"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"المحتوى المدعوم بالذكاء الاصطناعي تشكيل كل صناعة."}],"z_index":3},{"asset_sha256":null,"bbox":{"height":532440,"width":3420000,"x":8280000,"y":648000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Noto Sans CJK JP","font_size_pt":"24","italic":null,"language":"zh-CN","rtl":false,"text":"グローバルな視点"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":3060000,"width":3420000,"x":8280000,"y":1188000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"言語モデルの急速な進歩により、組織がドキュメント生成に"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"取り組む方法が変革されました。財務報告からマーケティング"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"資料まで、"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"AI"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"主導のコンテンツ作成はあらゆる産業を"},{"bold":false,"font_family":"Noto Sans CJK JP","font_size_pt":"14","italic":null,"language":"zh-CN","rtl":false,"text":"再形成しています。"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":4680000,"width":0,"x":4032000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s6:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":4680000,"width":0,"x":8100000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s6:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":1440000,"width":4320000,"x":5400000,"y":4680000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"90000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.9","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s6:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide6.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":1152000,"width":4032000,"x":5544000,"y":4824000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s6:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"AI-generated slides must handle RTL text,"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"CJK line breaking, and mixed scripts correctly."}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s6:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s6:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide6.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"6"}],"z_index":11}],"part_name":"/ppt/slides/slide6.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":6}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-07.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-07.json similarity index 84% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-07.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-07.json index 316d5c1..1be836c 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-07.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-07.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s7:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Image Handling"}],"z_index":0},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2880000,"width":3600000,"x":540000,"y":900000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":2362,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":1},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2880000,"width":2880000,"x":4680000,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s7:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":2},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":2880000,"width":3600000,"x":8100000,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s7:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":3600000,"x":540000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Full panorama crop"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":4680000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Circle-masked detail"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":324000,"width":3600000,"x":8100000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rounded corner crop"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":2160000,"width":2160000,"x":5040000,"y":1260000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":"50000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.5","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":504000,"width":1944000,"x":5148000,"y":2016000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"PREVIEW"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s7:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s7:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"7"}],"z_index":10}],"part_name":"/ppt/slides/slide7.xml","relationships":[{"id":"rId1","target":"/ppt/media/image2.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/media/image3.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/media/image4.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId4","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":7}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s7:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Image Handling"}],"z_index":0},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2880000,"width":3600000,"x":540000,"y":900000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":2362,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":1},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2880000,"width":2880000,"x":4680000,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s7:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":2},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":2880000,"width":3600000,"x":8100000,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s7:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":324000,"width":3600000,"x":540000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Full panorama crop"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":324000,"width":2880000,"x":4680000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Circle-masked detail"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":324000,"width":3600000,"x":8100000,"y":3888000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rounded corner crop"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":2160000,"width":2160000,"x":5040000,"y":1260000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":"50000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.5","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide7.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":504000,"width":1944000,"x":5148000,"y":2016000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s7:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"24","italic":null,"language":"en-US","rtl":false,"text":"PREVIEW"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s7:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s7:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide7.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"7"}],"z_index":10}],"part_name":"/ppt/slides/slide7.xml","relationships":[{"id":"rId1","target":"/ppt/media/image2.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/media/image3.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/media/image4.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId4","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":7}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-08.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-08.json similarity index 89% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-08.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-08.json index 25e8c74..5d9bf0a 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-08.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-08.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1080000,"width":12192120,"x":0,"y":5400000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"gradFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s8:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s8:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Depth & Layering"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":3240000,"width":5400000,"x":1440000,"y":1800000},"children":[{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":1440000,"y":2160000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":2520000,"y":1800000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 2"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3600000,"width":6480000,"x":3600000,"y":720000},"children":[{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":3600000,"y":1440000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 3"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"55000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.55","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 4"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":5760000,"y":720000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"90000","color":{"kind":"srgbClr","value":"ffffff"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.9","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 5"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 3"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 4"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 5"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s8:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s8:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"8"}],"z_index":5}],"part_name":"/ppt/slides/slide8.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":8}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1080000,"width":12192120,"x":0,"y":5400000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"gradFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s8:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s8:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Depth & Layering"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":3240000,"width":5400000,"x":1440000,"y":1800000},"children":[{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":1440000,"y":2160000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":2520000,"y":1800000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 2"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3600000,"width":6480000,"x":3600000,"y":720000},"children":[{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":3600000,"y":1440000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 3"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"55000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.55","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 4"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":2880000,"width":4320000,"x":5760000,"y":720000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"90000","color":{"kind":"srgbClr","value":"ffffff"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.9","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s8:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 5"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s8:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[2]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 3"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 4"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Layer 5"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s8:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s8:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide8.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"8"}],"z_index":5}],"part_name":"/ppt/slides/slide8.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":8}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-09.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-09.json similarity index 96% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-09.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-09.json index e1c89cc..85aecc9 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-09.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-09.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s9:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide9.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s9:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide9.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s9:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"API Reference"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":252000,"width":5040000,"x":648000,"y":1008000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Fixed Size (clips)"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":252000,"width":5040000,"x":6480000,"y":1008000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Auto-Shrink (fits)"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":5040000,"width":5040000,"x":648000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"GET /api/v1/submissions"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Authorization: Bearer YOUR_TOKEN_HERE"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Content-Type: application/json"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Query Parameters:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"model_id string required Filter by model"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"tier integer optional 1, 2, or 3"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"status string optional queued|grading|completed"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"limit integer optional Default: 20, max: 100"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"offset integer optional Default: 0"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Response 200:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"submissions\": ["},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"id\": \"sub_abc123\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"model_id\": \"gpt-4o\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"tier\": 3,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"status\": \"completed\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"fidelity_score\": 0.847,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"created_at\": \"2025-01-15T10:30:00Z\""},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"],"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"total\": 142,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"has_more\": true"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"NOTE TO DESIGNER: The parentheses above represent"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces in the actual slide text. When"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"typing this content into the slide, use standard"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces, i.e., the opening and closing"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"brace characters. They are written as parentheses"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"here only because this brief avoids those characters."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":5040000,"width":5040000,"x":6480000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"GET /api/v1/submissions"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Authorization: Bearer YOUR_TOKEN_HERE"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Content-Type: application/json"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Query Parameters:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"model_id string required Filter by model"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"tier integer optional 1, 2, or 3"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"status string optional queued|grading|completed"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"limit integer optional Default: 20, max: 100"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"offset integer optional Default: 0"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Response 200:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"submissions\": ["},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"id\": \"sub_abc123\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"model_id\": \"gpt-4o\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"tier\": 3,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"status\": \"completed\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"fidelity_score\": 0.847,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"created_at\": \"2025-01-15T10:30:00Z\""},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"],"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"total\": 142,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"has_more\": true"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"NOTE TO DESIGNER: The parentheses above represent"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces in the actual slide text. When"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"typing this content into the slide, use standard"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces, i.e., the opening and closing"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"brace characters. They are written as parentheses"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"here only because this brief avoids those characters."},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Error Responses:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"401 Unauthorized - Invalid or expired token"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"403 Forbidden - Rate limit exceeded"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"404 Not Found - Submission not found"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"422 Unprocessable - Invalid parameters"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"500 Internal Server Error - Contact support"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Rate Limits:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Free tier: 10 req/min, 100 req/hour"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Pro tier: 60 req/min, 1000 req/hour"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Enterprise: Custom"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s9:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s9:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"9"}],"z_index":8}],"part_name":"/ppt/slides/slide9.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":9}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s9:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide9.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s9:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide9.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s9:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"API Reference"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":252000,"width":5040000,"x":648000,"y":1008000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Fixed Size (clips)"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":252000,"width":5040000,"x":6480000,"y":1008000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Auto-Shrink (fits)"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":5040000,"width":5040000,"x":648000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"GET /api/v1/submissions"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Authorization: Bearer YOUR_TOKEN_HERE"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Content-Type: application/json"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Query Parameters:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"model_id string required Filter by model"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"tier integer optional 1, 2, or 3"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"status string optional queued|grading|completed"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"limit integer optional Default: 20, max: 100"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"offset integer optional Default: 0"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Response 200:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"submissions\": ["},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"id\": \"sub_abc123\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"model_id\": \"gpt-4o\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"tier\": 3,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"status\": \"completed\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"fidelity_score\": 0.847,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"created_at\": \"2025-01-15T10:30:00Z\""},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"],"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"total\": 142,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"has_more\": true"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"NOTE TO DESIGNER: The parentheses above represent"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces in the actual slide text. When"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"typing this content into the slide, use standard"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces, i.e., the opening and closing"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"brace characters. They are written as parentheses"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"here only because this brief avoids those characters."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":5040000,"width":5040000,"x":6480000,"y":1260000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":{"kind":"spcPct","value":115000},"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s9:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"GET /api/v1/submissions"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Authorization: Bearer YOUR_TOKEN_HERE"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Content-Type: application/json"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Query Parameters:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"model_id string required Filter by model"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"tier integer optional 1, 2, or 3"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"status string optional queued|grading|completed"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"limit integer optional Default: 20, max: 100"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"offset integer optional Default: 0"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Response 200:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"submissions\": ["},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"{"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"id\": \"sub_abc123\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"model_id\": \"gpt-4o\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"tier\": 3,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"status\": \"completed\","},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"fidelity_score\": 0.847,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"created_at\": \"2025-01-15T10:30:00Z\""},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"],"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"total\": 142,"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"\"has_more\": true"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"}"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"NOTE TO DESIGNER: The parentheses above represent"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces in the actual slide text. When"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"typing this content into the slide, use standard"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"JSON curly braces, i.e., the opening and closing"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"brace characters. They are written as parentheses"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"here only because this brief avoids those characters."},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Error Responses:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"401 Unauthorized - Invalid or expired token"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"403 Forbidden - Rate limit exceeded"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"404 Not Found - Submission not found"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"422 Unprocessable - Invalid parameters"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"500 Internal Server Error - Contact support"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Rate Limits:"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Free tier: 10 req/min, 100 req/hour"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Pro tier: 60 req/min, 1000 req/hour"},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":" "},{"bold":false,"font_family":"Liberation Mono","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Enterprise: Custom"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s9:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s9:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide9.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"9"}],"z_index":8}],"part_name":"/ppt/slides/slide9.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":9}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-10.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-10.json similarity index 95% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-10.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-10.json index f29a52f..ee7b116 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-10.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-10.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s10:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"System Architecture"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":720000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Client App"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"API Gateway"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3060000,"width":7560000,"x":2160000,"y":3240000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":4680000,"x":3600000,"y":3240000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":3600000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":6480000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":7560000,"x":2160000,"y":5220000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":2160000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":7920000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":360,"width":2520360,"x":2520000,"y":1620000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":1080360,"width":1440360,"x":4500000,"y":2160000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"bentConnector3","table_dimensions":null},"node_id":"s10:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":1080360,"width":360,"x":5940000,"y":2160000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":360,"width":360360,"x":6480000,"y":3780000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[4]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":1440360,"width":540360,"x":6840000,"y":4320000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[5]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":360,"width":1080360,"x":3960000,"y":5760000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[6]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":360,"width":1080360,"x":6840000,"y":5760000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[7]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":252000,"width":792000,"x":3060000,"y":1296000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"HTTPS"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":252000,"width":900000,"x":3780000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"JWT verify"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":252000,"width":792000,"x":5400000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Enqueue"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":252000,"width":3960000,"x":3960000,"y":2808000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Processing Layer"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":252000,"width":4680000,"x":3600000,"y":4824000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Persistence Layer"}],"z_index":15},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s10:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s10:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"10"}],"z_index":17}],"part_name":"/ppt/slides/slide10.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":10}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s10:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"System Architecture"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":720000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Client App"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"API Gateway"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":3060000,"width":7560000,"x":2160000,"y":3240000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":4680000,"x":3600000,"y":3240000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":3600000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":6480000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":7560000,"x":2160000,"y":5220000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":2160000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":5040000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1800000,"x":7920000,"y":5220000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3","s10:n3.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s10:n3"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"roundRect","table_dimensions":null},"node_id":"s10:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Auth Service"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Job Queue"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Grader"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"PostgreSQL"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Object Store"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Leaderboard"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":360,"width":2520360,"x":2520000,"y":1620000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[1]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":1080360,"width":1440360,"x":4500000,"y":2160000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"bentConnector3","table_dimensions":null},"node_id":"s10:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[2]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":1080360,"width":360,"x":5940000,"y":2160000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[3]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":360,"width":360360,"x":6480000,"y":3780000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[4]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":1440360,"width":540360,"x":6840000,"y":4320000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[5]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":360,"width":1080360,"x":3960000,"y":5760000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[6]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":360,"width":1080360,"x":6840000,"y":5760000},"children":[],"hidden":false,"kind":"connector","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"cxnSp","stroke":{"dash":null,"present":true,"width_emu":19080},"subtype":"straightConnector1","table_dimensions":null},"node_id":"s10:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:cxnSp[7]","source_part":"/ppt/slides/slide10.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":252000,"width":792000,"x":3060000,"y":1296000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"HTTPS"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":252000,"width":900000,"x":3780000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"JWT verify"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":252000,"width":792000,"x":5400000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Enqueue"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":252000,"width":3960000,"x":3960000,"y":2808000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Processing Layer"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":252000,"width":4680000,"x":3600000,"y":4824000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s10:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Persistence Layer"}],"z_index":15},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s10:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s10:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide10.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"10"}],"z_index":17}],"part_name":"/ppt/slides/slide10.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":10}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-11.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-11.json similarity index 92% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-11.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-11.json index 40172eb..e841c2b 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-11.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-11.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s11:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s11:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s11:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Brand Colors"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1080000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":1080000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Primary"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":4320000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Secondary"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":7560000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":7560000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Accent 1"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1080000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"ff6b35"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":1080000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":4320000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"7b2d8e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":4320000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":7560000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"3d9970"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":13},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":7560000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[15]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":648000,"width":10440000,"x":720000,"y":5508000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[16]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Top row uses theme color references. Bottom row uses explicit RGB values."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Changing the theme will update the top row but not the bottom row."}],"z_index":15},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s11:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[17]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s11:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[18]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"11"}],"z_index":17}],"part_name":"/ppt/slides/slide11.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":11}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s11:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s11:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s11:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Brand Colors"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1080000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":1080000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Primary"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":4320000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":4320000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Secondary"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":7560000,"y":1188000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":7560000,"y":2700000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Accent 1"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":1080000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"ff6b35"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":1080000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":4320000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"7b2d8e"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":4320000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":1440000,"width":1440000,"x":7560000,"y":3420000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"3d9970"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s11:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide11.xml","text_runs":[],"z_index":13},{"asset_sha256":null,"bbox":{"height":288000,"width":1440000,"x":7560000,"y":4932000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[15]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Override"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":648000,"width":10440000,"x":720000,"y":5508000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s11:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[16]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Top row uses theme color references. Bottom row uses explicit RGB values."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Changing the theme will update the top row but not the bottom row."}],"z_index":15},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s11:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[17]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s11:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[18]","source_part":"/ppt/slides/slide11.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"11"}],"z_index":17}],"part_name":"/ppt/slides/slide11.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":11}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-12.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-12.json similarity index 61% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-12.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-12.json index f6d53b2..55a80f8 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-12.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-12.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s12:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide12.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s12:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide12.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s12:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Document Fields"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":1368000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Current slide: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":""}],"z_index":3},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":1368000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Live slide number field (not static text)"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":2592000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"datetime","field_types":["datetime"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Generated: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"1/3/-1"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":2592000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Fixed date/time field"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":3816000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":3816000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Footer from master placeholder"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Slide 12"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Static text comparison"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s12:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s12:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"12"}],"z_index":12}],"part_name":"/ppt/slides/slide12.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":12}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s12:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide12.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s12:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide12.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s12:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Document Fields"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":1368000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Current slide: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":""}],"z_index":3},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":1368000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Live slide number field (not static text)"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":2592000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"datetime","field_types":["datetime"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Generated: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"1/3/-1"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":2592000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Fixed date/time field"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":3816000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Gloss Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":3816000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"← "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Footer from master placeholder"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":900000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Slide 12"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":540000,"width":5040000,"x":6120000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s12:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Static text comparison"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s12:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s12:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide12.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"12"}],"z_index":12}],"part_name":"/ppt/slides/slide12.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":12}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-13.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-13.json similarity index 91% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-13.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-13.json index a935c5c..b473895 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-13.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-13.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s13:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Composite Stress"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":3600000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":6,"series_count":1,"value_point_count":6},"chart_type":"pieChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"pieChart","table_dimensions":null},"node_id":"s13:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":2520000,"width":3240000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":3,"rows":4}},"node_id":"s13:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[2]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Check"},{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Status"},{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Weight"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Schema"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"3"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rendering"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"2"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Assets"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Review"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"1"}],"z_index":2},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2160000,"width":2880000,"x":8280000,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":0,"l":2362,"r":0,"t":0},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":466920,"width":6840000,"x":4500000,"y":3960000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"الهيكل والمحتوى والعرض في اختبار واحد"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":648000,"width":2520000,"x":900000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":432000,"width":2376000,"x":972000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE CHART"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":648000,"width":2520000,"x":4680000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":432000,"width":2376000,"x":4752000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE TABLE"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":648000,"width":2700000,"x":8460000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":432000,"width":2556000,"x":8532000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"APPROVED ASSET"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":0,"x":2160000,"y":3960000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":900000,"width":0,"x":5940000,"y":3600000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":12},{"asset_sha256":null,"bbox":{"height":1260000,"width":0,"x":9720000,"y":3240000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":13},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s13:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s13:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"13"}],"z_index":15}],"part_name":"/ppt/slides/slide13.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart2.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/media/image5.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":13}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s13:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Composite Stress"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":2880000,"width":3600000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":6,"series_count":1,"value_point_count":6},"chart_type":"pieChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"pieChart","table_dimensions":null},"node_id":"s13:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":2520000,"width":3240000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":3,"rows":4}},"node_id":"s13:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[2]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Check"},{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Status"},{"bold":true,"font_family":"Carlito","font_size_pt":"13","italic":null,"language":"en-US","rtl":false,"text":"Weight"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Schema"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"3"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rendering"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"2"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Assets"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Review"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"1"}],"z_index":2},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":2160000,"width":2880000,"x":8280000,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":0,"l":2362,"r":0,"t":0},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":466920,"width":6840000,"x":4500000,"y":3960000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"الهيكل والمحتوى والعرض في اختبار واحد"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":648000,"width":2520000,"x":900000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":5},{"asset_sha256":null,"bbox":{"height":432000,"width":2376000,"x":972000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE CHART"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":648000,"width":2520000,"x":4680000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":432000,"width":2376000,"x":4752000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE TABLE"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":648000,"width":2700000,"x":8460000,"y":4500000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s13:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":432000,"width":2556000,"x":8532000,"y":4608000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s13:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"APPROVED ASSET"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":0,"x":2160000,"y":3960000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":900000,"width":0,"x":5940000,"y":3600000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":12},{"asset_sha256":null,"bbox":{"height":1260000,"width":0,"x":9720000,"y":3240000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s13:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide13.xml","text_runs":[],"z_index":13},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s13:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s13:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide13.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"13"}],"z_index":15}],"part_name":"/ppt/slides/slide13.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart2.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/media/image5.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":13}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-14.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-14.json similarity index 66% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-14.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-14.json index cce3aa9..1fdb144 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-14.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-14.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout4.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s14:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":4426920,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s14:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":3288240,"width":4426920,"x":5152680,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s14:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s14:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"RTL Systems Review"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":4500000,"width":0,"x":6084000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s14:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":4320000,"width":5040000,"x":540000,"y":1152000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s14:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"مراجعة الأنظمة الموزعة"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"دقة العرض هي أساس المقارنة بين الأنظمة."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"سلامة البنية تحافظ على المعنى والتفاعل."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"The"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" الذكاء الاصطناعي "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"revolution"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" تتطلب نصاً ثنائي الاتجاه."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"الإصدار "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"AcidSlide v1"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" يختبر التوافق."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"يجب الحفاظ على علامات الترقيم وترتيب "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"Unicode"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":4320000,"width":4860000,"x":6660000,"y":1152000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s14:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"A structural benchmark must preserve meaning and direction."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Rendering alone cannot prove native editability."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Bidirectional runs must retain their Unicode order."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Mirrored padding makes the comparison deliberate."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"The benchmark records both artifact and visual fidelity."}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s14:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s14:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"14"}],"z_index":8}],"part_name":"/ppt/slides/slide14.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout4.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":14}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout4.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s14:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":4426920,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s14:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":3288240,"width":4426920,"x":5152680,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s14:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s14:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"RTL Systems Review"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":4500000,"width":0,"x":6084000,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":12600},"subtype":"line","table_dimensions":null},"node_id":"s14:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide14.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":4320000,"width":5040000,"x":540000,"y":1152000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]},{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s14:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"مراجعة الأنظمة الموزعة"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"دقة العرض هي أساس المقارنة بين الأنظمة."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"سلامة البنية تحافظ على المعنى والتفاعل."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"The"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" الذكاء الاصطناعي "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"revolution"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" تتطلب نصاً ثنائي الاتجاه."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"الإصدار "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"Gloss v1"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":" يختبر التوافق."},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"hi-IN","rtl":true,"text":"يجب الحفاظ على علامات الترقيم وترتيب "},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"Unicode"},{"bold":false,"font_family":"Noto Sans Arabic","font_size_pt":"14","italic":null,"language":"en-US","rtl":true,"text":"."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":4320000,"width":4860000,"x":6660000,"y":1152000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s14:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"A structural benchmark must preserve meaning and direction."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Rendering alone cannot prove native editability."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Bidirectional runs must retain their Unicode order."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Mirrored padding makes the comparison deliberate."},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"The benchmark records both artifact and visual fidelity."}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s14:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 6","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s14:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide14.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"14"}],"z_index":8}],"part_name":"/ppt/slides/slide14.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout4.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":14}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-15.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-15.json similarity index 90% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-15.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-15.json index 41689c0..dde4440 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-15.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-15.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s15:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Rotation Atlas"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":0,"width":10980000,"x":540000,"y":2880000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"line","table_dimensions":null},"node_id":"s15:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":360000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":540000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Baseline 0°"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":2520000,"y":2519640},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n4","rotation_degrees":"315","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":2700000,"y":2609640},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n5","rotation_degrees":"315","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Diagonal 45°"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":4680000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n6","rotation_degrees":"27","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":4860000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n7","rotation_degrees":"27","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Vertical 90°"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":6839640,"y":2519640},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n8","rotation_degrees":"225","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":7019640,"y":2609640},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n9","rotation_degrees":"225","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Reverse 135°"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":9000000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n10","rotation_degrees":"9","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":9180000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n11","rotation_degrees":"9","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Vertical 270°"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s15:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s15:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"15"}],"z_index":13}],"part_name":"/ppt/slides/slide15.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":15}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s15:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Rotation Atlas"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":0,"width":10980000,"x":540000,"y":2880000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"line","table_dimensions":null},"node_id":"s15:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":360000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":540000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Baseline 0°"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":2520000,"y":2519640},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n4","rotation_degrees":"315","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":4},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":2700000,"y":2609640},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n5","rotation_degrees":"315","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Diagonal 45°"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":4680000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n6","rotation_degrees":"27","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":4860000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n7","rotation_degrees":"27","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Vertical 90°"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":6839640,"y":2519640},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n8","rotation_degrees":"225","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":7019640,"y":2609640},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n9","rotation_degrees":"225","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Reverse 135°"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":720000,"width":2160000,"x":9000000,"y":2520000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"70000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.7","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s15:n10","rotation_degrees":"9","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide15.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":1800000,"x":9180000,"y":2610000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s15:n11","rotation_degrees":"9","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Vertical 270°"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s15:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s15:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide15.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"15"}],"z_index":13}],"part_name":"/ppt/slides/slide15.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":15}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-16.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-16.json similarity index 83% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-16.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-16.json index fa19658..3381720 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-16.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-16.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":3600000,"width":3600000,"x":-1080000,"y":-720000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Negative Circle","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s16:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":2160000,"width":4320000,"x":10392120,"y":2160000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Right Bleed","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":5760000,"x":2880000,"y":-360000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Top Bleed","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s16:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Beyond the Frame"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":648000,"width":5400000,"x":3240000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"3","italic":null,"language":"en-US","rtl":false,"text":"INTENTIONAL BLEED"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":504000,"width":6480000,"x":2700000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Negative coordinates are part of the composition."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s16:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s16:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"16"}],"z_index":7}],"part_name":"/ppt/slides/slide16.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":16}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":3600000,"width":3600000,"x":-1080000,"y":-720000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Negative Circle","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s16:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":2160000,"width":4320000,"x":10392120,"y":2160000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Right Bleed","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":5760000,"x":2880000,"y":-360000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"Intentional Top Bleed","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide16.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s16:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Beyond the Frame"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":648000,"width":5400000,"x":3240000,"y":2340000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"3","italic":null,"language":"en-US","rtl":false,"text":"INTENTIONAL BLEED"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":504000,"width":6480000,"x":2700000,"y":3240000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s16:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"16","italic":null,"language":"en-US","rtl":false,"text":"Negative coordinates are part of the composition."}],"z_index":5},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s16:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s16:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide16.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"16"}],"z_index":7}],"part_name":"/ppt/slides/slide16.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":16}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-17.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-17.json similarity index 96% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-17.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-17.json index 638e88b..f7d3af8 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-17.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-17.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s17:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Nested Systems"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4680000,"width":9720000,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":1893240,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":1080000,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.0.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":1312200,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"A1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.0.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"A1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":1080000,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":1893240,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":1080000,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.0.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":1312200,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"A2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.0.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"A2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"INPUT Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":4758840,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":4758840,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":5572080,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":4758840,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.1.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897200,"x":4991400,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"B1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.1.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"B1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":4758840,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":5572080,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":4758840,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.1.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897200,"x":4991400,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"B2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.1.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"B2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PROCESS Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":8437680,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":8437680,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":9250920,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":8437680,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.2.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":8670240,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"C1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.2.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"C1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":8437680,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":9250920,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":8437680,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.2.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":8670240,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"C2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.2.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"C2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"OUTPUT Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Nested Systems Outer Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s17:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s17:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"17"}],"z_index":3}],"part_name":"/ppt/slides/slide17.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":17}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s17:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Nested Systems"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4680000,"width":9720000,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":1080000,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":1893240,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":1080000,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.0.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":1312200,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"A1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.0.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"A1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":1080000,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":1893240,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":1080000,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"A2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.0.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":1312200,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"A2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0","s17:n1.0.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.0.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"A2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"INPUT Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":4758840,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":4758840,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":5572080,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":4758840,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.1.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897200,"x":4991400,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"B1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.1.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"B1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":4758840,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":5572080,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":4758840,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"d4a843"},"kind":"solidFill"},"hyperlink_targets":[],"name":"B2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.1.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897200,"x":4991400,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"B2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1","s17:n1.1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.1.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"B2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PROCESS Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":4680000,"width":2362320,"x":8437680,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":8437680,"y":1080000},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":9250920,"y":1080000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C1 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134360,"width":2362320,"x":8437680,"y":1505520},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C1 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.2.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":8670240,"y":1812600},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"C1 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.2.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"C1 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1559880,"width":2362320,"x":8437680,"y":4200120},"children":[{"asset_sha256":null,"bbox":{"height":898200,"width":735840,"x":9250920,"y":4200120},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"45000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C2 Circle","opacity":"0.45","paragraph_properties":[],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.1.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":1134720,"width":2362320,"x":8437680,"y":4625280},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"85000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"C2 Panel","opacity":"0.85","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s17:n1.2.1.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":472680,"width":1897560,"x":8670240,"y":4932720},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"C2 Label","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2","s17:n1.2.1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s17:n1.2.1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"C2 Inner Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1","s17:n1.2"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]/p:grpSp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"OUTPUT Middle Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s17:n1"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Nested Systems Outer Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s17:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"INPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"A2"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"PROCESS"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"B2"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C1"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"OUTPUT"},{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"C2"}],"z_index":1},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s17:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s17:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide17.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"17"}],"z_index":3}],"part_name":"/ppt/slides/slide17.xml","relationships":[{"id":"rId1","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":17}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-18.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-18.json similarity index 89% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-18.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-18.json index 07691d7..e5400de 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-18.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-18.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s18:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Three Cities / "},{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"zh-CN","rtl":false,"text":"三つの都市"}],"z_index":0},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":5220000,"width":3420000,"x":4386240,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"Center Column Tiled Pattern","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":1},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":1260000,"width":3420000,"x":642240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":3543,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":642240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Systems"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":642240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Cities expose the systems beneath daily life: transport, energy, data, and the people who connect them."}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":642240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Structure makes the invisible legible.”"}],"z_index":5},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":1260000,"width":3420000,"x":4386240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":12283,"l":0,"r":0,"t":12283},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[2]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":4386240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"zh-CN","rtl":false,"text":"システム"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":4386240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"生成されたスライドは構造と意味を保持します。"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"編集可能な構造が共有された理解を支えます。"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":4386240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"構造は意味を運びます。”"}],"z_index":9},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":1260000,"width":3420000,"x":8130240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":3543,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[3]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":8130240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Shared Futures"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":8130240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"A common visual language lets teams compare evidence, preserve intent, and build toward shared futures."}],"z_index":12},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":8130240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Consistency is a form of trust.”"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s18:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s18:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"18"}],"z_index":15}],"part_name":"/ppt/slides/slide18.xml","relationships":[{"id":"rId1","target":"/ppt/media/image6.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/media/image7.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/media/image8.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId4","target":"/ppt/media/image9.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId5","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":18}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s18:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Three Cities / "},{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"zh-CN","rtl":false,"text":"三つの都市"}],"z_index":0},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":5220000,"width":3420000,"x":4386240,"y":900000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"blipFill"},"hyperlink_targets":[],"name":"Center Column Tiled Pattern","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":1},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":1260000,"width":3420000,"x":642240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":3543,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":2},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":642240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Systems"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":642240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Cities expose the systems beneath daily life: transport, energy, data, and the people who connect them."}],"z_index":4},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":642240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Structure makes the invisible legible.”"}],"z_index":5},{"asset_sha256":"sha256:4417783162291de4024dd0ea2481b85b61955ad6cc8dc3684436f40009645385","bbox":{"height":1260000,"width":3420000,"x":4386240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":12283,"l":0,"r":0,"t":12283},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[2]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":6},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":4386240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"zh-CN","rtl":false,"text":"システム"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":4386240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"生成されたスライドは構造と意味を保持します。"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"編集可能な構造が共有された理解を支えます。"}],"z_index":8},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":4386240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"zh-CN","rtl":false,"text":"構造は意味を運びます。”"}],"z_index":9},{"asset_sha256":"sha256:9b79bd07fd1bc22459fe6940754348c023182caba7f3ae4239a81c91db4e1a8a","bbox":{"height":1260000,"width":3420000,"x":8130240,"y":1080000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":3543,"l":0,"r":0,"t":3543},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[3]","source_part":"/ppt/slides/slide18.xml","text_runs":[],"z_index":10},{"asset_sha256":null,"bbox":{"height":396000,"width":3420000,"x":8130240,"y":2484000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"2","italic":null,"language":"en-US","rtl":false,"text":"Shared Futures"}],"z_index":11},{"asset_sha256":null,"bbox":{"height":1656000,"width":3420000,"x":8130240,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s18:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"A common visual language lets teams compare evidence, preserve intent, and build toward shared futures."}],"z_index":12},{"asset_sha256":null,"bbox":{"height":900000,"width":3420000,"x":8130240,"y":4752000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"80000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.8","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"roundRect","table_dimensions":null},"node_id":"s18:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"“"},{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Consistency is a form of trust.”"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s18:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s18:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide18.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"18"}],"z_index":15}],"part_name":"/ppt/slides/slide18.xml","relationships":[{"id":"rId1","target":"/ppt/media/image6.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId2","target":"/ppt/media/image7.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/media/image8.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId4","target":"/ppt/media/image9.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId5","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":18}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-19.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-19.json similarity index 92% rename from acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-19.json rename to gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-19.json index 43b7ff2..4d9bee2 100644 --- a/acidslide-v1/benchmark/fixtures/expected-scenegraphs/slide-19.json +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-19.json @@ -1 +1 @@ -{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s19:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s19:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s19:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Design System Audit"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Typography"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":547920,"width":3240000,"x":3060000,"y":972000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Carlito 36"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":396000,"width":3600000,"x":7380000,"y":1044000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Liberation Sans 18"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":2052000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Palette"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":3060000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":5220000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":7380000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":3024000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Spacing"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":3060000,"y":2952000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":4680000,"y":2952000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":12},{"asset_sha256":null,"bbox":{"height":432000,"width":2880000,"x":6480000,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"0.5cm token"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":3996000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[15]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Line Weight"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":6120000,"x":3060000,"y":4140000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"line","table_dimensions":null},"node_id":"s19:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[16]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":15},{"asset_sha256":null,"bbox":{"height":396000,"width":1800000,"x":9540000,"y":3942000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[17]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"0.5pt teal rule"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":4968000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[18]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Navigation"}],"z_index":17},{"asset_sha256":null,"bbox":{"height":468000,"width":3240000,"x":3060000,"y":4860000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":["/ppt/slides/slide1.xml"],"name":"Return to Cover Internal Link","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n18","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[19]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Return to Cover"}],"z_index":18},{"asset_sha256":null,"bbox":{"height":468000,"width":3240000,"x":7380000,"y":4860000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":["/ppt/slides/slide5.xml"],"name":"Meet the Team Internal Link","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n19","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[20]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Meet the Team"}],"z_index":19},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s19:n20","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[21]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"AcidSlide Benchmark v1"}],"z_index":20},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s19:n21","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[22]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"19"}],"z_index":21}],"part_name":"/ppt/slides/slide19.xml","relationships":[{"id":"rId1","target":"/ppt/slides/slide1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"},{"id":"rId2","target":"/ppt/slides/slide5.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":19}],"units":"EMU"} \ No newline at end of file +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout3.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":946440,"width":9071640,"x":504000,"y":226080},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s19:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":3288240,"width":9071640,"x":504000,"y":1326600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"body","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"body","table_dimensions":null},"node_id":"s19:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s19:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Design System Audit"}],"z_index":2},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":1080000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Typography"}],"z_index":3},{"asset_sha256":null,"bbox":{"height":547920,"width":3240000,"x":3060000,"y":972000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Carlito 36"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":396000,"width":3600000,"x":7380000,"y":1044000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Liberation Sans 18"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":2052000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n6","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Palette"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":3060000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":7},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":5220000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":504000,"width":1800000,"x":7380000,"y":1944000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":9},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":3024000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[11]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Spacing"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":3060000,"y":2952000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[12]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":11},{"asset_sha256":null,"bbox":{"height":432000,"width":1440000,"x":4680000,"y":2952000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[13]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":12},{"asset_sha256":null,"bbox":{"height":432000,"width":2880000,"x":6480000,"y":2952000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[14]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"0.5cm token"}],"z_index":13},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":3996000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n14","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[15]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Line Weight"}],"z_index":14},{"asset_sha256":null,"bbox":{"height":0,"width":6120000,"x":3060000,"y":4140000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":true,"width_emu":6480},"subtype":"line","table_dimensions":null},"node_id":"s19:n15","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[16]","source_part":"/ppt/slides/slide19.xml","text_runs":[],"z_index":15},{"asset_sha256":null,"bbox":{"height":396000,"width":1800000,"x":9540000,"y":3942000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n16","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[17]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"0.5pt teal rule"}],"z_index":16},{"asset_sha256":null,"bbox":{"height":324000,"width":1980000,"x":648000,"y":4968000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n17","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[18]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"14","italic":null,"language":"en-US","rtl":false,"text":"Navigation"}],"z_index":17},{"asset_sha256":null,"bbox":{"height":468000,"width":3240000,"x":3060000,"y":4860000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":["/ppt/slides/slide1.xml"],"name":"Return to Cover Internal Link","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n18","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[19]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Return to Cover"}],"z_index":18},{"asset_sha256":null,"bbox":{"height":468000,"width":3240000,"x":7380000,"y":4860000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":["/ppt/slides/slide5.xml"],"name":"Meet the Team Internal Link","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s19:n19","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[20]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Meet the Team"}],"z_index":19},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 4","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s19:n20","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[21]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":20},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 5","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s19:n21","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[22]","source_part":"/ppt/slides/slide19.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"19"}],"z_index":21}],"part_name":"/ppt/slides/slide19.xml","relationships":[{"id":"rId1","target":"/ppt/slides/slide1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"},{"id":"rId2","target":"/ppt/slides/slide5.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":19}],"units":"EMU"} \ No newline at end of file diff --git a/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-20.json b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-20.json new file mode 100644 index 0000000..ab1c9a9 --- /dev/null +++ b/gloss-v1/benchmark/fixtures/expected-scenegraphs/slide-20.json @@ -0,0 +1 @@ +{"gold_ooxml_is_oracle":false,"mce_resolved_package_sha256":"sha256:23a7b1fb4fa07c3ecf386413d71e2c142eccbbb3165bcc257b573f177f531dc6","profile_sha256":"sha256:e2ad051b5aff48e8566bf26d239acf4309619f9b5325497198a97be0e64211ab","schema_version":"1.0","slide_size":{"height":6858000,"width":12192000},"slides":[{"layout_part":"/ppt/slideLayouts/slideLayout1.xml","master_part":"/ppt/slideMasters/slideMaster1.xml","nodes":[{"asset_sha256":null,"bbox":{"height":1145160,"width":10972800,"x":609480,"y":273600},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"PlaceHolder 1","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":"title","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"title","table_dimensions":null},"node_id":"s20:n0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"36","italic":null,"language":"en-US","rtl":false,"text":"Gloss Synthesis"}],"z_index":0},{"asset_sha256":null,"bbox":{"height":1980000,"width":3780000,"x":540000,"y":1080000},"children":[],"hidden":false,"kind":"chart","native_properties":{"chart_data_summary":{"category_point_count":9,"series_count":3,"value_point_count":9},"chart_type":"lineChart","crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Native Line Chart","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"lineChart","table_dimensions":null},"node_id":"s20:n1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1620000,"width":6840000,"x":4680000,"y":1080000},"children":[],"hidden":false,"kind":"table","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Native Table","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]},{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"graphicFrame","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":null,"table_dimensions":{"columns":6,"rows":3}},"node_id":"s20:n2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:graphicFrame[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Tier"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Slides"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Checks"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"SSIM"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Schema"},{"bold":true,"font_family":"Carlito","font_size_pt":"11","italic":null,"language":"en-US","rtl":false,"text":"Status"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"L1"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"5"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"70"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"0.9999"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Ready"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"L3"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"20"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"280"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"0.9999"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Pass"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"Ready"}],"z_index":2},{"asset_sha256":"sha256:63cab1432d0b4d8ab581c42b26d35e02ec28c32ada2e15267fd7eac760c04007","bbox":{"height":1512000,"width":2340000,"x":4680000,"y":2880000},"children":[],"hidden":false,"kind":"picture","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":{"b":0,"l":3937,"r":0,"t":0},"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Approved Hero","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"pic","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n3","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:pic[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":3},{"asset_sha256":null,"bbox":{"height":518760,"width":1800000,"x":7380000,"y":2844000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"r","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":true,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n4","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Noto Sans Arabic","font_size_pt":"16","italic":null,"language":"hi-IN","rtl":true,"text":"اختبار شامل"}],"z_index":4},{"asset_sha256":null,"bbox":{"height":396000,"width":1800000,"x":7380000,"y":3312000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n5","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[3]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Noto Sans CJK JP","font_size_pt":"16","italic":null,"language":"zh-CN","rtl":false,"text":"総合テスト"}],"z_index":5},{"asset_sha256":null,"bbox":{"height":468000,"width":1800000,"x":576000,"y":3636000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Rotated Text","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n6","rotation_degrees":"45","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[4]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Carlito","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"ROTATED"}],"z_index":6},{"asset_sha256":null,"bbox":{"height":1296000,"width":2340000,"x":2160000,"y":3528000},"children":[{"asset_sha256":null,"bbox":{"height":1116000,"width":2340000,"x":2160000,"y":3528000},"children":[{"asset_sha256":null,"bbox":{"height":1080000,"width":1080000,"x":2160000,"y":3528000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"1b2a4a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":936000,"width":1260000,"x":2736000,"y":3708000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"e8634a"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s20:n7.0.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[2]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":1},{"asset_sha256":null,"bbox":{"height":1080000,"width":1080000,"x":3420000,"y":3528000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":"65000","color":{"kind":"srgbClr","value":"2aacb8"},"kind":"solidFill"},"hyperlink_targets":[],"name":"","opacity":"0.65","paragraph_properties":[],"parent_group_path":["s20:n7","s20:n7.0"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0.2","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]/p:sp[3]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":2}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Overlap Inner Group","opacity":"1","paragraph_properties":[],"parent_group_path":["s20:n7"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7.0","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:grpSp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":0},{"asset_sha256":null,"bbox":{"height":288000,"width":1872000,"x":2484000,"y":4536000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":["s20:n7"],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n7.1","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]/p:sp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"2-LEVEL GROUP"}],"z_index":1}],"hidden":false,"kind":"group","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"Synthesis Overlap Outer Group","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"grpSp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ellipse","table_dimensions":null},"node_id":"s20:n7","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:grpSp[1]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"1","italic":null,"language":"en-US","rtl":false,"text":"2-LEVEL GROUP"}],"z_index":7},{"asset_sha256":null,"bbox":{"height":792000,"width":2520000,"x":9000000,"y":4032000},"children":[],"hidden":false,"kind":"shape","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":true,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"gradFill"},"hyperlink_targets":[],"name":"Synthesis Navy Teal Gradient","opacity":"1","paragraph_properties":[],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"roundRect","table_dimensions":null},"node_id":"s20:n8","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[5]","source_part":"/ppt/slides/slide20.xml","text_runs":[],"z_index":8},{"asset_sha256":null,"bbox":{"height":504000,"width":2304000,"x":9108000,"y":4176000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"","opacity":"1","paragraph_properties":[{"alignment":"ctr","bullet":{"kind":"buNone","value":null},"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n9","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[6]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":true,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"NATIVE GRADIENT"}],"z_index":9},{"asset_sha256":null,"bbox":{"height":900000,"width":4500000,"x":540000,"y":5040000},"children":[],"hidden":false,"kind":"text","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Native Bullet List","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]},{"alignment":null,"bullet":{"kind":"buChar","value":"•"},"indent":-144000,"level":null,"line_spacing":null,"margin_left":216000,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n10","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[7]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Native structure retained"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Multilingual meaning preserved"},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"12","italic":null,"language":"en-US","rtl":false,"text":"Rendered fidelity verified"}],"z_index":10},{"asset_sha256":null,"bbox":{"height":540000,"width":5220000,"x":8100000,"y":5148000},"children":[],"hidden":false,"kind":"field","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"noFill"},"hyperlink_targets":[],"name":"Synthesis Live Slide Number Field","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":null,"placeholder_type":null,"shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":0},"subtype":"rect","table_dimensions":null},"node_id":"s20:n11","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[8]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":"Live slide: "},{"bold":false,"font_family":"Liberation Sans","font_size_pt":"18","italic":null,"language":"en-US","rtl":false,"text":""}],"z_index":11},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":null,"field_types":[],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 2","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":1,"placeholder_type":"ftr","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"ftr","table_dimensions":null},"node_id":"s20:n12","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[9]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"Gloss Benchmark v1"}],"z_index":12},{"asset_sha256":null,"bbox":{"height":0,"width":0,"x":0,"y":0},"children":[],"hidden":false,"kind":"placeholder","native_properties":{"chart_data_summary":null,"chart_type":null,"crop":null,"crop_to_shape":false,"field_type":"slidenum","field_types":["slidenum"],"fill":{"alpha":null,"color":null,"kind":"inherited"},"hyperlink_targets":[],"name":"PlaceHolder 3","opacity":"1","paragraph_properties":[{"alignment":null,"bullet":null,"indent":null,"level":null,"line_spacing":null,"margin_left":null,"rtl":false,"tab_stops":[]}],"parent_group_path":[],"placeholder_index":2,"placeholder_type":"sldNum","shadow":false,"source_xml_kind":"sp","stroke":{"dash":null,"present":false,"width_emu":null},"subtype":"sldNum","table_dimensions":null},"node_id":"s20:n13","rotation_degrees":"0","source_locator":"/p:sld/p:cSld/p:spTree/p:sp[10]","source_part":"/ppt/slides/slide20.xml","text_runs":[{"bold":null,"font_family":null,"font_size_pt":null,"italic":null,"language":null,"rtl":false,"text":"20"}],"z_index":13}],"part_name":"/ppt/slides/slide20.xml","relationships":[{"id":"rId1","target":"/ppt/charts/chart3.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"},{"id":"rId2","target":"/ppt/media/image10.png","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},{"id":"rId3","target":"/ppt/slideLayouts/slideLayout1.xml","target_mode":"Internal","type":"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"}],"slide":20}],"units":"EMU"} \ No newline at end of file diff --git a/acidslide-v1/benchmark/fixtures/mutations/execution-report-v1.json b/gloss-v1/benchmark/fixtures/mutations/execution-report-v1.json similarity index 99% rename from acidslide-v1/benchmark/fixtures/mutations/execution-report-v1.json rename to gloss-v1/benchmark/fixtures/mutations/execution-report-v1.json index f49c4f6..a509613 100644 --- a/acidslide-v1/benchmark/fixtures/mutations/execution-report-v1.json +++ b/gloss-v1/benchmark/fixtures/mutations/execution-report-v1.json @@ -1,7 +1,7 @@ { "evidence_scope": "generated operator behavior only; not independent assertion provenance, review, or evidence", - "execution_report_id": "acidslide-generated-mutation-execution-v1", - "fixture_index_id": "acidslide-generated-mutation-fixture-index-v1", + "execution_report_id": "gloss-generated-mutation-execution-v1", + "fixture_index_id": "gloss-generated-mutation-fixture-index-v1", "results": [ { "actual_negative_affected_slides": [], @@ -358,7 +358,7 @@ { "actual_negative_affected_slides": [], "after": "single-fault replacement", - "before": "AcidSlide v1", + "before": "Gloss v1", "changed_path": "slides[1].objects[0].text_runs[0].text", "checklist_item_id": "slide-01.key-text", "expected_negative_affected_slides": [], @@ -3645,7 +3645,7 @@ { "actual_negative_affected_slides": [], "after": "single-fault replacement", - "before": "AcidSlide Synthesis", + "before": "Gloss Synthesis", "changed_path": "slides[20].objects[0].text_runs[0].text", "checklist_item_id": "slide-20.key-text", "expected_negative_affected_slides": [], diff --git a/acidslide-v1/benchmark/fixtures/mutations/fixture-index-v1.json b/gloss-v1/benchmark/fixtures/mutations/fixture-index-v1.json similarity index 99% rename from acidslide-v1/benchmark/fixtures/mutations/fixture-index-v1.json rename to gloss-v1/benchmark/fixtures/mutations/fixture-index-v1.json index c6ff2ad..4e85273 100644 --- a/acidslide-v1/benchmark/fixtures/mutations/fixture-index-v1.json +++ b/gloss-v1/benchmark/fixtures/mutations/fixture-index-v1.json @@ -1,5 +1,5 @@ { - "candidate_contract_sha256": "sha256:0cf8a16c4d3bad54c495b35b2c1221b6b9f7d4ef520c4074b513cbf7d4822217", + "candidate_contract_sha256": "sha256:1cd00f8835b2d72b1e78d7b025a3b6a7551b23c597e7a1a7e51539aee81188ee", "entries": [ { "assertion_evidence_status": "pending", @@ -5043,9 +5043,9 @@ } ], "evidence_scope": "generated operator behavior only; not independent assertion provenance, review, or evidence", - "fixture_index_id": "acidslide-generated-mutation-fixture-index-v1", + "fixture_index_id": "gloss-generated-mutation-fixture-index-v1", "schema_version": "1.0", - "source_inventory_id": "acidslide-scored-assertion-inventory-v1", + "source_inventory_id": "gloss-scored-assertion-inventory-v1", "summary": { "assertion_evidence_complete": 0, "assertion_evidence_pending_or_unknown": 280, diff --git a/acidslide-v1/benchmark/fixtures/mutations/mutation-expectations-v1.json b/gloss-v1/benchmark/fixtures/mutations/mutation-expectations-v1.json similarity index 99% rename from acidslide-v1/benchmark/fixtures/mutations/mutation-expectations-v1.json rename to gloss-v1/benchmark/fixtures/mutations/mutation-expectations-v1.json index 6dae8d9..77908a3 100644 --- a/acidslide-v1/benchmark/fixtures/mutations/mutation-expectations-v1.json +++ b/gloss-v1/benchmark/fixtures/mutations/mutation-expectations-v1.json @@ -1,6 +1,6 @@ { "evidence_scope": "generated operator behavior only; not independent assertion provenance, review, or evidence", - "expectation_set_id": "acidslide-generated-mutation-expectations-v1", + "expectation_set_id": "gloss-generated-mutation-expectations-v1", "expectations": [ { "assertion_id": "deck.assert-alignment-detail", @@ -3643,7 +3643,7 @@ "release_evidence_claimed": false } ], - "fixture_index_id": "acidslide-generated-mutation-fixture-index-v1", + "fixture_index_id": "gloss-generated-mutation-fixture-index-v1", "schema_version": "1.0", "summary": { "expectations": 280, diff --git a/acidslide-v1/benchmark/fixtures/package-hash/gold-copy-rejection-v1.json b/gloss-v1/benchmark/fixtures/package-hash/gold-copy-rejection-v1.json similarity index 96% rename from acidslide-v1/benchmark/fixtures/package-hash/gold-copy-rejection-v1.json rename to gloss-v1/benchmark/fixtures/package-hash/gold-copy-rejection-v1.json index 73ad34d..583279e 100644 --- a/acidslide-v1/benchmark/fixtures/package-hash/gold-copy-rejection-v1.json +++ b/gloss-v1/benchmark/fixtures/package-hash/gold-copy-rejection-v1.json @@ -37,5 +37,5 @@ "expected_decision": "not_a_gold_copy" } ], - "expected_canonical_sha256": "2af1ca72d58ae9e851048966c54cfcf49fbee5f0f08e487b75af0ae980a6ad23" + "expected_canonical_sha256": "fc8f1024f6bbd52a845331ad2b7a01adef5bbf1d7927c760449cba076172fea2" } diff --git a/acidslide-v1/benchmark/fonts/LICENSE b/gloss-v1/benchmark/fonts/LICENSE similarity index 96% rename from acidslide-v1/benchmark/fonts/LICENSE rename to gloss-v1/benchmark/fonts/LICENSE index ec78af7..187c488 100644 --- a/acidslide-v1/benchmark/fonts/LICENSE +++ b/gloss-v1/benchmark/fonts/LICENSE @@ -1,4 +1,4 @@ -AcidSlide v1 Bundled Font Licensing +Gloss v1 Bundled Font Licensing The files under `files/` are unmodified copies extracted from the exact Ubuntu 22.04 packages listed in `manifest.json`. They are redistributable under the diff --git a/acidslide-v1/benchmark/fonts/files/Caladea-Bold.ttf b/gloss-v1/benchmark/fonts/files/Caladea-Bold.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/Caladea-Bold.ttf rename to gloss-v1/benchmark/fonts/files/Caladea-Bold.ttf diff --git a/acidslide-v1/benchmark/fonts/files/Caladea-BoldItalic.ttf b/gloss-v1/benchmark/fonts/files/Caladea-BoldItalic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/Caladea-BoldItalic.ttf rename to gloss-v1/benchmark/fonts/files/Caladea-BoldItalic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/Caladea-Italic.ttf b/gloss-v1/benchmark/fonts/files/Caladea-Italic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/Caladea-Italic.ttf rename to gloss-v1/benchmark/fonts/files/Caladea-Italic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/Caladea-Regular.ttf b/gloss-v1/benchmark/fonts/files/Caladea-Regular.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/Caladea-Regular.ttf rename to gloss-v1/benchmark/fonts/files/Caladea-Regular.ttf diff --git a/acidslide-v1/benchmark/fonts/files/Carlito-Bold.ttf b/gloss-v1/benchmark/fonts/files/Carlito-Bold.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/Carlito-Bold.ttf rename to gloss-v1/benchmark/fonts/files/Carlito-Bold.ttf diff --git a/acidslide-v1/benchmark/fonts/files/Carlito-BoldItalic.ttf b/gloss-v1/benchmark/fonts/files/Carlito-BoldItalic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/Carlito-BoldItalic.ttf rename to gloss-v1/benchmark/fonts/files/Carlito-BoldItalic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/Carlito-Italic.ttf b/gloss-v1/benchmark/fonts/files/Carlito-Italic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/Carlito-Italic.ttf rename to gloss-v1/benchmark/fonts/files/Carlito-Italic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/Carlito-Regular.ttf b/gloss-v1/benchmark/fonts/files/Carlito-Regular.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/Carlito-Regular.ttf rename to gloss-v1/benchmark/fonts/files/Carlito-Regular.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationMono-Bold.ttf b/gloss-v1/benchmark/fonts/files/LiberationMono-Bold.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationMono-Bold.ttf rename to gloss-v1/benchmark/fonts/files/LiberationMono-Bold.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationMono-BoldItalic.ttf b/gloss-v1/benchmark/fonts/files/LiberationMono-BoldItalic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationMono-BoldItalic.ttf rename to gloss-v1/benchmark/fonts/files/LiberationMono-BoldItalic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationMono-Italic.ttf b/gloss-v1/benchmark/fonts/files/LiberationMono-Italic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationMono-Italic.ttf rename to gloss-v1/benchmark/fonts/files/LiberationMono-Italic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationMono-Regular.ttf b/gloss-v1/benchmark/fonts/files/LiberationMono-Regular.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationMono-Regular.ttf rename to gloss-v1/benchmark/fonts/files/LiberationMono-Regular.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationSans-Bold.ttf b/gloss-v1/benchmark/fonts/files/LiberationSans-Bold.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationSans-Bold.ttf rename to gloss-v1/benchmark/fonts/files/LiberationSans-Bold.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationSans-BoldItalic.ttf b/gloss-v1/benchmark/fonts/files/LiberationSans-BoldItalic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationSans-BoldItalic.ttf rename to gloss-v1/benchmark/fonts/files/LiberationSans-BoldItalic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationSans-Italic.ttf b/gloss-v1/benchmark/fonts/files/LiberationSans-Italic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationSans-Italic.ttf rename to gloss-v1/benchmark/fonts/files/LiberationSans-Italic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationSans-Regular.ttf b/gloss-v1/benchmark/fonts/files/LiberationSans-Regular.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationSans-Regular.ttf rename to gloss-v1/benchmark/fonts/files/LiberationSans-Regular.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationSerif-Bold.ttf b/gloss-v1/benchmark/fonts/files/LiberationSerif-Bold.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationSerif-Bold.ttf rename to gloss-v1/benchmark/fonts/files/LiberationSerif-Bold.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationSerif-BoldItalic.ttf b/gloss-v1/benchmark/fonts/files/LiberationSerif-BoldItalic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationSerif-BoldItalic.ttf rename to gloss-v1/benchmark/fonts/files/LiberationSerif-BoldItalic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationSerif-Italic.ttf b/gloss-v1/benchmark/fonts/files/LiberationSerif-Italic.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationSerif-Italic.ttf rename to gloss-v1/benchmark/fonts/files/LiberationSerif-Italic.ttf diff --git a/acidslide-v1/benchmark/fonts/files/LiberationSerif-Regular.ttf b/gloss-v1/benchmark/fonts/files/LiberationSerif-Regular.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/LiberationSerif-Regular.ttf rename to gloss-v1/benchmark/fonts/files/LiberationSerif-Regular.ttf diff --git a/acidslide-v1/benchmark/fonts/files/NotoSans-Bold.ttf b/gloss-v1/benchmark/fonts/files/NotoSans-Bold.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/NotoSans-Bold.ttf rename to gloss-v1/benchmark/fonts/files/NotoSans-Bold.ttf diff --git a/acidslide-v1/benchmark/fonts/files/NotoSans-Regular.ttf b/gloss-v1/benchmark/fonts/files/NotoSans-Regular.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/NotoSans-Regular.ttf rename to gloss-v1/benchmark/fonts/files/NotoSans-Regular.ttf diff --git a/acidslide-v1/benchmark/fonts/files/NotoSansArabic-Bold.ttf b/gloss-v1/benchmark/fonts/files/NotoSansArabic-Bold.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/NotoSansArabic-Bold.ttf rename to gloss-v1/benchmark/fonts/files/NotoSansArabic-Bold.ttf diff --git a/acidslide-v1/benchmark/fonts/files/NotoSansArabic-Regular.ttf b/gloss-v1/benchmark/fonts/files/NotoSansArabic-Regular.ttf similarity index 100% rename from acidslide-v1/benchmark/fonts/files/NotoSansArabic-Regular.ttf rename to gloss-v1/benchmark/fonts/files/NotoSansArabic-Regular.ttf diff --git a/acidslide-v1/benchmark/fonts/files/NotoSansCJK-Bold.ttc b/gloss-v1/benchmark/fonts/files/NotoSansCJK-Bold.ttc similarity index 100% rename from acidslide-v1/benchmark/fonts/files/NotoSansCJK-Bold.ttc rename to gloss-v1/benchmark/fonts/files/NotoSansCJK-Bold.ttc diff --git a/acidslide-v1/benchmark/fonts/files/NotoSansCJK-Regular.ttc b/gloss-v1/benchmark/fonts/files/NotoSansCJK-Regular.ttc similarity index 100% rename from acidslide-v1/benchmark/fonts/files/NotoSansCJK-Regular.ttc rename to gloss-v1/benchmark/fonts/files/NotoSansCJK-Regular.ttc diff --git a/acidslide-v1/benchmark/fonts/licenses/fonts-crosextra-caladea-20130214-2.1.txt b/gloss-v1/benchmark/fonts/licenses/fonts-crosextra-caladea-20130214-2.1.txt similarity index 100% rename from acidslide-v1/benchmark/fonts/licenses/fonts-crosextra-caladea-20130214-2.1.txt rename to gloss-v1/benchmark/fonts/licenses/fonts-crosextra-caladea-20130214-2.1.txt diff --git a/acidslide-v1/benchmark/fonts/licenses/fonts-crosextra-carlito-20130920-1.1.txt b/gloss-v1/benchmark/fonts/licenses/fonts-crosextra-carlito-20130920-1.1.txt similarity index 100% rename from acidslide-v1/benchmark/fonts/licenses/fonts-crosextra-carlito-20130920-1.1.txt rename to gloss-v1/benchmark/fonts/licenses/fonts-crosextra-carlito-20130920-1.1.txt diff --git a/acidslide-v1/benchmark/fonts/licenses/fonts-liberation-1.07.4-11.txt b/gloss-v1/benchmark/fonts/licenses/fonts-liberation-1.07.4-11.txt similarity index 100% rename from acidslide-v1/benchmark/fonts/licenses/fonts-liberation-1.07.4-11.txt rename to gloss-v1/benchmark/fonts/licenses/fonts-liberation-1.07.4-11.txt diff --git a/acidslide-v1/benchmark/fonts/licenses/fonts-noto-cjk-20220127+repack1-1.txt b/gloss-v1/benchmark/fonts/licenses/fonts-noto-cjk-20220127+repack1-1.txt similarity index 100% rename from acidslide-v1/benchmark/fonts/licenses/fonts-noto-cjk-20220127+repack1-1.txt rename to gloss-v1/benchmark/fonts/licenses/fonts-noto-cjk-20220127+repack1-1.txt diff --git a/acidslide-v1/benchmark/fonts/licenses/fonts-noto-core-20201225-1build1.txt b/gloss-v1/benchmark/fonts/licenses/fonts-noto-core-20201225-1build1.txt similarity index 100% rename from acidslide-v1/benchmark/fonts/licenses/fonts-noto-core-20201225-1build1.txt rename to gloss-v1/benchmark/fonts/licenses/fonts-noto-core-20201225-1build1.txt diff --git a/acidslide-v1/benchmark/fonts/manifest.json b/gloss-v1/benchmark/fonts/manifest.json similarity index 100% rename from acidslide-v1/benchmark/fonts/manifest.json rename to gloss-v1/benchmark/fonts/manifest.json diff --git a/acidslide-v1/benchmark/prompts/DESIGNER_BRIEF.md b/gloss-v1/benchmark/prompts/DESIGNER_BRIEF.md similarity index 97% rename from acidslide-v1/benchmark/prompts/DESIGNER_BRIEF.md rename to gloss-v1/benchmark/prompts/DESIGNER_BRIEF.md index f350795..ed2df4c 100644 --- a/acidslide-v1/benchmark/prompts/DESIGNER_BRIEF.md +++ b/gloss-v1/benchmark/prompts/DESIGNER_BRIEF.md @@ -1,8 +1,8 @@ -# AcidSlide v1 — Canonical Deck Authoring Brief +# Gloss v1 — Canonical Deck Authoring Brief ## What This Document Is -You are building the **canonical AcidSlide v1 reference deck**, a public benchmark target for presentation-generation systems. Every submitted deck is compared with this reference under the pinned LibreOffice renderer and by OOXML inspection. +You are building the **canonical Gloss v1 reference deck**, a public benchmark target for presentation-generation systems. Every submitted deck is compared with this reference under the pinned LibreOffice renderer and by OOXML inspection. This prompt suite is the primary requirements contract and was authored before the reference deck. Reference images are supplementary visual guidance only: explicit prompt requirements take precedence. Follow this brief precisely and do not infer hidden constraints from any reference export. @@ -87,31 +87,31 @@ A more specific canonical slide clause overrides a deck-wide default only for th **You MUST create the following masters/layouts before building slides.** Some slides specifically test whether AI models correctly use masters rather than copying elements manually. -#### Master: "AcidSlide Master" +#### Master: "Gloss Master" - Background: solid `#0F1923` - Slide number placeholder in bottom-right corner: Liberation Sans 10pt, `#FFFFFF` at 50% opacity - Thin horizontal line (0.5pt, `#2AACB8`) at y=17.5cm spanning full width -- Company name "ACIDSLIDE" in bottom-left: Liberation Sans 8pt, `#FFFFFF` at 30% opacity +- Company name "GLOSS" in bottom-left: Liberation Sans 8pt, `#FFFFFF` at 30% opacity #### Layout 1: "Title Slide" -- Based on AcidSlide Master +- Based on Gloss Master - Title placeholder: centered, Carlito 44pt Bold, `#FFFFFF` - Subtitle placeholder: centered below title, Carlito 24pt, `#E8634A` #### Layout 2: "Content Slide" -- Based on AcidSlide Master +- Based on Gloss Master - Title placeholder: top-left, Carlito 36pt Bold, `#FFFFFF` - Body placeholder: below title, Liberation Sans 18pt, `#F5F3EE` - Accent bar: 0.070556cm wide vertical bar on the left edge, `#E8634A`. This equals 4 pixels in the official 1920×1080 export; the physical width is the authoring requirement. #### Layout 3: "Two-Column" -- Based on AcidSlide Master +- Based on Gloss Master - Title placeholder: top, Carlito 36pt Bold, `#FFFFFF` - Left body placeholder: left half - Right body placeholder: right half #### Layout 4: "Blank with Footer" -- Based on AcidSlide Master +- Based on Gloss Master - No content placeholders (only the master footer elements) --- @@ -128,7 +128,7 @@ A more specific canonical slide clause overrides a deck-wide default only for th 2. **Title text** (in the title placeholder): ``` - AcidSlide v1 + Gloss v1 ``` 3. **Subtitle text** (in the subtitle placeholder): @@ -364,7 +364,7 @@ This slide's purpose is to verify that the master/layout is being used correctly Cards positioned at x=1.5cm, x=12cm, x=22.5cm — evenly spaced across the slide. -3. **Critical requirement**: The bottom footer line, "ACIDSLIDE" text, and slide number MUST come from the master. Do NOT manually add these elements on this slide. The whole point of this slide is to test that the master is correctly inherited. +3. **Critical requirement**: The bottom footer line, "GLOSS" text, and slide number MUST come from the master. Do NOT manually add these elements on this slide. The whole point of this slide is to test that the master is correctly inherited. 4. **The accent bar** on the left edge must also come from the "Content Slide" layout, not a manually placed shape. @@ -718,7 +718,7 @@ This slide's purpose is to verify that the master/layout is being used correctly - `Generated: ` followed by a fixed native date/time field with value `2025-01-15T10:30:00Z`, displayed exactly as `2025-01-15 10:30 UTC`; Liberation Sans 18pt `#FFFFFF`. **Field 3 — Footer**: - - The slide footer (from View → Header and Footer) should contain: "AcidSlide Benchmark v1" + - The slide footer (from View → Header and Footer) should contain: "Gloss Benchmark v1" - This must be enabled via the master's footer placeholder 3. **Explanatory labels** next to each: @@ -782,7 +782,7 @@ The following images are bundled in `benchmark/assets/mirrored/`. Do NOT use any ## Delivery and Validation ### Step 1: Author delivers the canonical reference deck -Deliver the prompt-authored file as `acidslide-v1-gold.pptx` from the pinned LibreOffice environment. +Deliver the prompt-authored file as `gloss-v1-gold.pptx` from the pinned LibreOffice environment. ### Step 2: Author self-check Verify before delivery: @@ -791,7 +791,7 @@ Verify before delivery: - [ ] Slide size is 16:9 (33.867cm × 19.05cm) - [ ] Slides are numbered 1-20 - [ ] No SmartArt, animations, transitions, audio, video, speaker notes, or comments - - [ ] Master "AcidSlide Master" exists with footer line, slide number, and company name + - [ ] Master "Gloss Master" exists with footer line, slide number, and company name - [ ] Layouts "Title Slide", "Content Slide", "Two-Column", and "Blank with Footer" exist - [ ] Slides 1, 2, 4, 5, 9, 11, 12 use the correct layout (not manually placed elements) - [ ] Table on Slide 3 is a native table (not grouped shapes) diff --git a/acidslide-v1/benchmark/prompts/deck.md b/gloss-v1/benchmark/prompts/deck.md similarity index 94% rename from acidslide-v1/benchmark/prompts/deck.md rename to gloss-v1/benchmark/prompts/deck.md index d27566f..91fe25c 100644 --- a/acidslide-v1/benchmark/prompts/deck.md +++ b/gloss-v1/benchmark/prompts/deck.md @@ -1,4 +1,4 @@ -# AcidSlide v1 — Deck-Level Prompt +# Gloss v1 — Deck-Level Prompt This prompt is the primary deck-wide requirements contract. It is authored independently of the reference deck; reference PNGs are supplementary guidance only. Build a new `.pptx` from these instructions in the pinned LibreOffice environment. @@ -81,31 +81,31 @@ A more specific canonical slide clause overrides a deck-wide default only for th **You MUST create the following masters/layouts before building slides.** Some slides specifically test whether AI models correctly use masters rather than copying elements manually. -#### Master: "AcidSlide Master" +#### Master: "Gloss Master" - Background: solid `#0F1923` - Slide number placeholder in bottom-right corner: Liberation Sans 10pt, `#FFFFFF` at 50% opacity - Thin horizontal line (0.5pt, `#2AACB8`) at y=17.5cm spanning full width -- Company name "ACIDSLIDE" in bottom-left: Liberation Sans 8pt, `#FFFFFF` at 30% opacity +- Company name "GLOSS" in bottom-left: Liberation Sans 8pt, `#FFFFFF` at 30% opacity #### Layout 1: "Title Slide" -- Based on AcidSlide Master +- Based on Gloss Master - Title placeholder: centered, Carlito 44pt Bold, `#FFFFFF` - Subtitle placeholder: centered below title, Carlito 24pt, `#E8634A` #### Layout 2: "Content Slide" -- Based on AcidSlide Master +- Based on Gloss Master - Title placeholder: top-left, Carlito 36pt Bold, `#FFFFFF` - Body placeholder: below title, Liberation Sans 18pt, `#F5F3EE` - Accent bar: 0.070556cm wide vertical bar on the left edge, `#E8634A`. This equals 4 pixels in the official 1920×1080 export; the physical width is the authoring requirement. #### Layout 3: "Two-Column" -- Based on AcidSlide Master +- Based on Gloss Master - Title placeholder: top, Carlito 36pt Bold, `#FFFFFF` - Left body placeholder: left half - Right body placeholder: right half #### Layout 4: "Blank with Footer" -- Based on AcidSlide Master +- Based on Gloss Master - No content placeholders (only the master footer elements) --- diff --git a/acidslide-v1/benchmark/prompts/validation/slide-01.md b/gloss-v1/benchmark/prompts/validation/slide-01.md similarity index 62% rename from acidslide-v1/benchmark/prompts/validation/slide-01.md rename to gloss-v1/benchmark/prompts/validation/slide-01.md index 172d06d..8eb2689 100644 --- a/acidslide-v1/benchmark/prompts/validation/slide-01.md +++ b/gloss-v1/benchmark/prompts/validation/slide-01.md @@ -1,13 +1,13 @@ - # Slide {number:02d} prompt validation @@ -650,7 +650,7 @@ def write_prompts() -> None: if record_path.is_file(): existing = record_path.read_text(encoding="utf-8") match = re.match( - r"\A\n", + r"\A\n", existing, re.DOTALL, ) @@ -993,7 +993,7 @@ def deck_items(asset_hashes: dict[str, str]) -> list[dict]: deck_item( "master-present", 1, - "AcidSlide master exists", + "Gloss master exists", "At least one native slide master must own the shared background and footer elements.", "master-layout", "critical", @@ -1013,7 +1013,7 @@ def deck_items(asset_hashes: dict[str, str]) -> list[dict]: "automatic_fail_if": ["non_bundled_font_used"], "propagation": "zero_affected_slides", "affected_slides": named_affected_slides( - "acidslide.affected-slides.non-bundled-font.v1" + "gloss.affected-slides.non-bundled-font.v1" ), }, ), @@ -1030,7 +1030,7 @@ def deck_items(asset_hashes: dict[str, str]) -> list[dict]: "automatic_fail_if": ["notes_or_comments_present"], "propagation": "zero_affected_slides", "affected_slides": named_affected_slides( - "acidslide.affected-slides.notes-comments.v1" + "gloss.affected-slides.notes-comments.v1" ), }, ), @@ -1307,9 +1307,9 @@ def write_scored_assertion_candidate(documents: list[dict]) -> None: ) inventory = { "schema_version": "1.0", - "inventory_id": "acidslide-scored-assertion-inventory-v1", + "inventory_id": "gloss-scored-assertion-inventory-v1", "lifecycle_state": "candidate", - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "prompt_bundle_sha256": "pending", "reference_image_bundle_sha256": "pending", "asset_manifest_sha256": f"sha256:{sha256(BENCHMARK / 'assets' / 'manifest.json')}", @@ -1430,7 +1430,7 @@ def write_manifests() -> dict[str, str]: "usage": usage, "license": "CC0-1.0", "license_file": "LICENSE", - "attribution": "AcidSlide benchmark maintainers", + "attribution": "Gloss benchmark maintainers", "provenance": "hand-authored procedural SVG rendered locally with librsvg; no third-party or model-generated content", } ) diff --git a/acidslide-v1/benchmark/tools/build_mutation_fixtures.py b/gloss-v1/benchmark/tools/build_mutation_fixtures.py similarity index 89% rename from acidslide-v1/benchmark/tools/build_mutation_fixtures.py rename to gloss-v1/benchmark/tools/build_mutation_fixtures.py index 4371d5f..86a985d 100644 --- a/acidslide-v1/benchmark/tools/build_mutation_fixtures.py +++ b/gloss-v1/benchmark/tools/build_mutation_fixtures.py @@ -9,13 +9,13 @@ from pathlib import Path from typing import Any -ACIDSLIDE_ROOT = Path(__file__).resolve().parents[2] -BENCHMARK = ACIDSLIDE_ROOT / "benchmark" -GRADER = ACIDSLIDE_ROOT / "grader" +GLOSS_ROOT = Path(__file__).resolve().parents[2] +BENCHMARK = GLOSS_ROOT / "benchmark" +GRADER = GLOSS_ROOT / "grader" sys.path.insert(0, str(GRADER)) -from acidslide.checklist import load_checklist # noqa: E402 -from acidslide.mutation_fixtures import ( # noqa: E402 +from gloss.checklist import load_checklist # noqa: E402 +from gloss.mutation_fixtures import ( # noqa: E402 build_fixture_index, build_mutation_expectations, execute_fixture_matrix, @@ -72,7 +72,7 @@ def main() -> None: summary = documents["execution-report-v1.json"]["summary"] print( - "AcidSlide mutation fixtures: " + "Gloss mutation fixtures: " f"{summary['killed_mutants']}/{summary['executed_single_fault_negative_fixtures']} " "mutants killed; " f"{summary['unimplemented_items']} unimplemented; " diff --git a/acidslide-v1/benchmark/tools/build_prompt_requirements.py b/gloss-v1/benchmark/tools/build_prompt_requirements.py similarity index 98% rename from acidslide-v1/benchmark/tools/build_prompt_requirements.py rename to gloss-v1/benchmark/tools/build_prompt_requirements.py index 7c193c4..d092338 100644 --- a/acidslide-v1/benchmark/tools/build_prompt_requirements.py +++ b/gloss-v1/benchmark/tools/build_prompt_requirements.py @@ -26,7 +26,7 @@ CONTEXT_LABEL = re.compile(r"^\s*(?:\d+\.\s+)?\*\*(.+?):?\*\*:?\s*$") CONTENT_BEARING_DECK_HEADINGS = frozenset( { - '#### Master: "AcidSlide Master"', + '#### Master: "Gloss Master"', '#### Layout 1: "Title Slide"', '#### Layout 2: "Content Slide"', '#### Layout 3: "Two-Column"', @@ -332,8 +332,8 @@ def build() -> dict[str, Any]: ) return { "schema_version": "1.0", - "oracle_id": "acidslide-prompt-requirements-v1", - "benchmark_version": "acidslide-v1.0.0", + "oracle_id": "gloss-prompt-requirements-v1", + "benchmark_version": "gloss-v1.0.0", "freeze_status": "candidate_pending_independent_review", "sources": sources, "independent_reviews": [], diff --git a/acidslide-v1/benchmark/tools/build_scoring_manifest.py b/gloss-v1/benchmark/tools/build_scoring_manifest.py similarity index 97% rename from acidslide-v1/benchmark/tools/build_scoring_manifest.py rename to gloss-v1/benchmark/tools/build_scoring_manifest.py index abeac5b..9982509 100644 --- a/acidslide-v1/benchmark/tools/build_scoring_manifest.py +++ b/gloss-v1/benchmark/tools/build_scoring_manifest.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # ruff: noqa: E402 -"""Build a frozen AcidSlide v1 scoring manifest or fail without writing one. +"""Build a frozen Gloss v1 scoring manifest or fail without writing one. This command intentionally has no draft/placeholder mode. A manifest is a release identity, so absent gold, exports, OCI identity, runtime attestation, @@ -24,13 +24,13 @@ GRADER = ROOT / "grader" sys.path.insert(0, str(GRADER)) -from acidslide.package_hash import canonical_package_sha256, sha256_file -from acidslide.profile_contract import ( +from gloss.package_hash import canonical_package_sha256, sha256_file +from gloss.profile_contract import ( deterministic_tree_sha256, environment_profile_hashes, load_render_profiles, ) -from acidslide.release_evidence import validate_export_determinism_evidence +from gloss.release_evidence import validate_export_determinism_evidence def _arguments() -> argparse.Namespace: @@ -39,7 +39,7 @@ def _arguments() -> argparse.Namespace: parser.add_argument( "--gold", type=Path, - default=ROOT / "benchmark" / "deck" / "gold" / "acidslide-v1-gold.pptx", + default=ROOT / "benchmark" / "deck" / "gold" / "gloss-v1-gold.pptx", ) parser.add_argument( "--gold-exports", @@ -287,9 +287,9 @@ def build_manifest( ) manifest: dict[str, Any] = { "schema_version": "1.0", - "manifest_id": "acidslide-scoring-manifest-v1", + "manifest_id": "gloss-scoring-manifest-v1", "release_status": "frozen", - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "platform": runtime["platform"], "oci_image_digest": runtime["oci_image_digest"], "runtime": { diff --git a/acidslide-v1/benchmark/validate_corpus.py b/gloss-v1/benchmark/validate_corpus.py similarity index 98% rename from acidslide-v1/benchmark/validate_corpus.py rename to gloss-v1/benchmark/validate_corpus.py index 41c170d..13ccbf2 100644 --- a/acidslide-v1/benchmark/validate_corpus.py +++ b/gloss-v1/benchmark/validate_corpus.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -"""Validate the public, non-gold AcidSlide v1 benchmark corpus.""" +"""Validate the public, non-gold Gloss v1 benchmark corpus.""" from __future__ import annotations @@ -154,7 +154,7 @@ def hard_tokens(text: str) -> list[str]: def _prompt_validation_metadata(result: Validation, record: Path, slide: int) -> dict: text = record.read_text(encoding="utf-8") match = re.match( - r"\A\n", + r"\A\n", text, re.DOTALL, ) @@ -518,7 +518,7 @@ def validate_prompts(result: Validation, release: bool) -> None: ) result.require( metadata.get("schema_version") == "1.0" - and metadata.get("record_id") == f"acidslide-prompt-validation-slide-{number:02d}" + and metadata.get("record_id") == f"gloss-prompt-validation-slide-{number:02d}" and metadata.get("slide") == number, f"slide {number:02d}: validation metadata identity mismatch", ) @@ -804,9 +804,9 @@ def validate_release_documents(result: Validation, release: bool) -> None: if not release: return repository = ROOT.parent - openspec = repository / "ACIDSLIDE_OPENSPEC.md" + openspec = repository / "GLOSS_OPENSPEC.md" readme = repository / "README.md" - result.require(openspec.is_file(), "release mode: ACIDSLIDE_OPENSPEC.md is missing") + result.require(openspec.is_file(), "release mode: GLOSS_OPENSPEC.md is missing") result.require(readme.is_file(), "release mode: README.md is missing") if openspec.is_file(): status_lines = [ @@ -815,8 +815,8 @@ def validate_release_documents(result: Validation, release: bool) -> None: if line.startswith("Status:") ] result.require( - status_lines == ["Status: Frozen — acidslide-v1.0.0"], - "release mode: OpenSpec status must be exactly 'Status: Frozen — acidslide-v1.0.0'", + status_lines == ["Status: Frozen — gloss-v1.0.0"], + "release mode: OpenSpec status must be exactly 'Status: Frozen — gloss-v1.0.0'", ) if readme.is_file(): result.require( @@ -843,13 +843,13 @@ def main() -> int: validate_normative(result, args.release) validate_release_documents(result, args.release) if result.errors: - print("AcidSlide corpus validation: FAIL") + print("Gloss corpus validation: FAIL") for error in result.errors: print(f"- {error}") for note in result.notes: print(f"- note: {note}") return 1 - print("AcidSlide corpus validation: PASS") + print("Gloss corpus validation: PASS") print("- prompts: 1 deck + 60 slide variants + 20 validation records") print("- checklist: 280 unique schema-valid items; severity 84/112/84 (30/40/30)") print("- manifests: 3 CC0 assets + 26 redistributable pinned font files") diff --git a/acidslide-v1/benchmark/validate_normative.py b/gloss-v1/benchmark/validate_normative.py similarity index 98% rename from acidslide-v1/benchmark/validate_normative.py rename to gloss-v1/benchmark/validate_normative.py index 2afa3d9..e7a0282 100644 --- a/acidslide-v1/benchmark/validate_normative.py +++ b/gloss-v1/benchmark/validate_normative.py @@ -1,4 +1,4 @@ -"""Validate AcidSlide v1 normative profiles and candidate/frozen artifacts.""" +"""Validate Gloss v1 normative profiles and candidate/frozen artifacts.""" # ruff: noqa: E402 @@ -24,17 +24,17 @@ SCHEMAS = ROOT / "schemas" sys.path.insert(0, str(GRADER)) -from acidslide.profile_contract import ( # noqa: E402 +from gloss.profile_contract import ( # noqa: E402 environment_profile_hashes, load_render_profiles, ) -from acidslide.release_evidence import ( +from gloss.release_evidence import ( validate_assertion_inventory_approvals as _validate_assertion_inventory_approvals, ) -from acidslide.release_evidence import ( +from gloss.release_evidence import ( validate_export_determinism_evidence, ) -from acidslide.release_evidence import ( +from gloss.release_evidence import ( validate_prompt_review_approvals as _validate_prompt_review_approvals, ) @@ -400,7 +400,7 @@ def _validate_release_evidence_instances( ) result.require( - (BENCHMARK / "deck" / "gold" / "acidslide-v1-gold.pptx").is_file(), + (BENCHMARK / "deck" / "gold" / "gloss-v1-gold.pptx").is_file(), "release mode: canonical gold deck is missing", ) exports = [BENCHMARK / "deck" / "exports" / f"slide-{slide:02d}.png" for slide in range(1, 21)] @@ -716,7 +716,7 @@ def _validate_assertion_evidence_index(result: Result, inventory: dict) -> None: def _validate_assertion_inventory_projection_sha256(inventory: dict) -> str: projection = { - "domain": "AcidSlide scored assertion inventory review v1", + "domain": "Gloss scored assertion inventory review v1", "inventory": {key: value for key, value in inventory.items() if key != "review"}, } return f"sha256:{hashlib.sha256(rfc8785.dumps(projection)).hexdigest()}" @@ -859,8 +859,8 @@ def verify_release_chain( channel = index.get("channel") sequence = index.get("sequence") state = index.get("state") - if channel != "acidslide-v1-stable": - raise ValueError("release index channel is not acidslide-v1-stable") + if channel != "gloss-v1-stable": + raise ValueError("release index channel is not gloss-v1-stable") if not isinstance(sequence, int) or isinstance(sequence, bool) or sequence < 1: raise ValueError("release index sequence is invalid") if sequence in seen_sequences: diff --git a/acidslide-v1/grader/README.md b/gloss-v1/grader/README.md similarity index 70% rename from acidslide-v1/grader/README.md rename to gloss-v1/grader/README.md index 93933b3..cd747b3 100644 --- a/acidslide-v1/grader/README.md +++ b/gloss-v1/grader/README.md @@ -1,15 +1,15 @@ -# AcidSlide Grader +# Gloss Grader -The AcidSlide CLI performs quarantine checks, deterministic ECMA-376 Markup Compatibility preprocessing, Part 1 Transitional XSD validation, LibreOffice export, SSIM comparison, native object inspection, checklist evaluation, and report generation. +The Gloss CLI performs quarantine checks, deterministic ECMA-376 Markup Compatibility preprocessing, Part 1 Transitional XSD validation, LibreOffice export, SSIM comparison, native object inspection, checklist evaluation, and report generation. -The wheel contains the benchmark corpus and schemas. Source and Docker layouts are also discovered automatically; `--benchmark-dir` or `ACIDSLIDE_BENCHMARK_DIR` can select an explicit corpus. +The wheel contains the benchmark corpus and schemas. Source and Docker layouts are also discovered automatically; `--benchmark-dir` or `GLOSS_BENCHMARK_DIR` can select an explicit corpus. ```bash uv sync --extra dev --locked -uv run acidslide validate ../benchmark/deck/gold/acidslide-v1-gold.pptx -uv run acidslide grade ../submission.pptx --tier 3 \ +uv run gloss validate ../benchmark/deck/gold/gloss-v1-gold.pptx +uv run gloss grade ../submission.pptx --tier 3 \ --artifact-context ./local-artifact-context.json --format json -uv run acidslide grade ../submission.pptx --tier 3 \ +uv run gloss grade ../submission.pptx --tier 3 \ --artifact-context ./local-artifact-context.json --format html -o report.html ``` @@ -28,9 +28,9 @@ the independently published genesis checkpoint and a durable, non-cache acceptan grading: ```bash -export ACIDSLIDE_TRUSTED_GENESIS_SHA256='sha256:' -export ACIDSLIDE_RELEASE_STATE_PATH='/var/lib/acidslide/release-head-v1.json' -export ACIDSLIDE_GRADER_SOURCE_PATH='/opt/acidslide/grader-source-tree.tar' +export GLOSS_TRUSTED_GENESIS_SHA256='sha256:' +export GLOSS_RELEASE_STATE_PATH='/var/lib/gloss/release-head-v1.json' +export GLOSS_GRADER_SOURCE_PATH='/opt/gloss/grader-source-tree.tar' ``` The verifier checks every index signature, sequence, predecessor hash, cohort binding, and effective @@ -41,8 +41,8 @@ supported; production deployments should still pin their published genesis expli Before accepting that head, the verifier also reconstructs the complete grader source inventory from the repository `grader/` directory, packaged `benchmark/grader-source-tree.tar`, or the explicit -`ACIDSLIDE_GRADER_SOURCE_PATH`. It requires exact file membership, byte length, SHA-256, and execute +`GLOSS_GRADER_SOURCE_PATH`. It requires exact file membership, byte length, SHA-256, and execute bits to match the canonical `grader-source-tree-manifest.json` and all signed scoring-manifest/cohort bindings. Links, special files, path collisions, extras, omissions, and archive traversal fail closed. -See `ACIDSLIDE_OPENSPEC.md` in the repository root for the normative contract. +See `GLOSS_OPENSPEC.md` in the repository root for the normative contract. diff --git a/gloss-v1/grader/gloss/__init__.py b/gloss-v1/grader/gloss/__init__.py new file mode 100644 index 0000000..72c79fd --- /dev/null +++ b/gloss-v1/grader/gloss/__init__.py @@ -0,0 +1,3 @@ +"""Gloss benchmark grader — ECMA-376 slide generation fidelity testing.""" + +__version__ = "1.0.0a1" diff --git a/acidslide-v1/grader/acidslide/affected_slides.py b/gloss-v1/grader/gloss/affected_slides.py similarity index 92% rename from acidslide-v1/grader/acidslide/affected_slides.py rename to gloss-v1/grader/gloss/affected_slides.py index 4899928..e2a6c72 100644 --- a/acidslide-v1/grader/acidslide/affected_slides.py +++ b/gloss-v1/grader/gloss/affected_slides.py @@ -9,16 +9,16 @@ import rfc8785 -from acidslide.resources import resolve_benchmark_dir +from gloss.resources import resolve_benchmark_dir if TYPE_CHECKING: from pathlib import Path - from acidslide.inspect_ooxml import DeckGraph, SceneObject + from gloss.inspect_ooxml import DeckGraph, SceneObject SELECTOR_REGISTRY = "requirements/affected-slide-selectors-v1.json" -NON_BUNDLED_FONT_SELECTOR = "acidslide.affected-slides.non-bundled-font.v1" -NOTES_COMMENTS_SELECTOR = "acidslide.affected-slides.notes-comments.v1" +NON_BUNDLED_FONT_SELECTOR = "gloss.affected-slides.non-bundled-font.v1" +NOTES_COMMENTS_SELECTOR = "gloss.affected-slides.notes-comments.v1" class AffectedSlideSelectorError(ValueError): @@ -67,7 +67,7 @@ def _load_registry(registry_path: str) -> dict[str, dict[str, Any]]: else _path_from_string(registry_path) ) document = json.loads(path.read_text(encoding="utf-8")) - if document.get("registry_id") != "acidslide-affected-slide-selectors-v1": + if document.get("registry_id") != "gloss-affected-slide-selectors-v1": raise AffectedSlideSelectorError(f"Unsupported affected-slide selector registry: {path}") result: dict[str, dict[str, Any]] = {} diff --git a/acidslide-v1/grader/acidslide/checklist.py b/gloss-v1/grader/gloss/checklist.py similarity index 100% rename from acidslide-v1/grader/acidslide/checklist.py rename to gloss-v1/grader/gloss/checklist.py diff --git a/acidslide-v1/grader/acidslide/cli.py b/gloss-v1/grader/gloss/cli.py similarity index 91% rename from acidslide-v1/grader/acidslide/cli.py rename to gloss-v1/grader/gloss/cli.py index 373ce04..dc5f4a8 100644 --- a/acidslide-v1/grader/acidslide/cli.py +++ b/gloss-v1/grader/gloss/cli.py @@ -1,4 +1,4 @@ -"""AcidSlide CLI — benchmark grading tool.""" +"""Gloss CLI — benchmark grading tool.""" import json from pathlib import Path @@ -7,7 +7,7 @@ import click from rich.console import Console -from acidslide import __version__ +from gloss import __version__ console = Console() @@ -15,7 +15,7 @@ @click.group() @click.version_option(version=__version__) def main() -> None: - """AcidSlide benchmark grader — ECMA-376 slide generation fidelity testing.""" + """Gloss benchmark grader — ECMA-376 slide generation fidelity testing.""" @main.command("build-environment-candidate") @@ -45,31 +45,31 @@ def main() -> None: @click.option( "--schema-dir", type=click.Path(exists=True, file_okay=False, readable=True, path_type=Path), - default=Path("/opt/acidslide/schemas"), + default=Path("/opt/gloss/schemas"), show_default=True, ) @click.option( "--font-manifest", type=click.Path(exists=True, dir_okay=False, readable=True, path_type=Path), - default=Path("/opt/acidslide/benchmark/fonts/manifest.json"), + default=Path("/opt/gloss/benchmark/fonts/manifest.json"), show_default=True, ) @click.option( "--dockerfile", type=click.Path(exists=True, dir_okay=False, readable=True, path_type=Path), - default=Path("/opt/acidslide/build/Dockerfile"), + default=Path("/opt/gloss/build/Dockerfile"), show_default=True, ) @click.option( "--grader-lockfile", type=click.Path(exists=True, dir_okay=False, readable=True, path_type=Path), - default=Path("/opt/acidslide/grader/uv.lock"), + default=Path("/opt/gloss/grader/uv.lock"), show_default=True, ) @click.option( "--grader-root", type=click.Path(exists=True, file_okay=False, readable=True, path_type=Path), - default=Path("/opt/acidslide/grader"), + default=Path("/opt/gloss/grader"), show_default=True, ) def build_environment_candidate( @@ -87,7 +87,7 @@ def build_environment_candidate( """Reconstruct a non-final candidate from a network-isolated linux/amd64 image.""" import rfc8785 - from acidslide.environment import ( + from gloss.environment import ( EnvironmentAttestationError, construct_environment_attestation_candidate, environment_attestation_sha256, @@ -141,7 +141,7 @@ def build_environment_candidate( @click.option( "--font-manifest", type=click.Path(exists=True, dir_okay=False, readable=True, path_type=Path), - default=Path("/opt/acidslide/benchmark/fonts/manifest.json"), + default=Path("/opt/gloss/benchmark/fonts/manifest.json"), show_default=True, help="Exact font manifest installed in the grader image", ) @@ -154,7 +154,7 @@ def attest_environment( """Reconstruct and verify the frozen attestation inside the live container.""" import rfc8785 - from acidslide.environment import ( + from gloss.environment import ( EnvironmentAttestationError, environment_attestation_sha256, reconstruct_environment_attestation, @@ -219,11 +219,11 @@ def grade( artifact_context: Path, fmt: str, ) -> None: - """Grade a .pptx submission against the AcidSlide benchmark.""" - from acidslide.models import ArtifactReportContext - from acidslide.pipeline import run_pipeline - from acidslide.provenance import ReleaseProvenanceError - from acidslide.resources import BenchmarkDataError + """Grade a .pptx submission against the Gloss benchmark.""" + from gloss.models import ArtifactReportContext + from gloss.pipeline import run_pipeline + from gloss.provenance import ReleaseProvenanceError + from gloss.resources import BenchmarkDataError try: raw_context: Any = json.loads(artifact_context.read_text(encoding="utf-8")) @@ -273,8 +273,8 @@ def grade( @click.argument("submission", type=click.Path(exists=True, path_type=Path)) def validate(submission: Path) -> None: """Run quarantine checks and ECMA-376 schema validation only (no grading).""" - from acidslide.quarantine import quarantine_check - from acidslide.schema_validate import validate_schema + from gloss.quarantine import quarantine_check + from gloss.schema_validate import validate_schema console.print(f"[bold]Validating:[/bold] {submission}") @@ -313,7 +313,7 @@ def validate(submission: Path) -> None: ) def export(submission: Path, outdir: Path, pdf_output: Path | None) -> None: """Export .pptx slides to PNG using LibreOffice headless.""" - from acidslide.export import export_slides + from gloss.export import export_slides outdir.mkdir(parents=True, exist_ok=True) slides = export_slides(submission, outdir, pdf_output=pdf_output) @@ -350,7 +350,7 @@ def scene_graph( profile: Path | None, ) -> None: """Extract deterministic structural evidence from an MCE-resolved PPTX.""" - from acidslide.scene_graph import ( + from gloss.scene_graph import ( SceneGraphError, canonical_scene_graph_bytes, extract_normative_scene_graph, diff --git a/acidslide-v1/grader/acidslide/compare.py b/gloss-v1/grader/gloss/compare.py similarity index 98% rename from acidslide-v1/grader/acidslide/compare.py rename to gloss-v1/grader/gloss/compare.py index 110e21c..d878154 100644 --- a/acidslide-v1/grader/acidslide/compare.py +++ b/gloss-v1/grader/gloss/compare.py @@ -8,7 +8,7 @@ from PIL import Image from skimage.metrics import structural_similarity as ssim -from acidslide.models import VisualComparisonResult +from gloss.models import VisualComparisonResult if TYPE_CHECKING: from pathlib import Path diff --git a/acidslide-v1/grader/acidslide/environment.py b/gloss-v1/grader/gloss/environment.py similarity index 97% rename from acidslide-v1/grader/acidslide/environment.py rename to gloss-v1/grader/gloss/environment.py index 308524d..f053669 100644 --- a/acidslide-v1/grader/acidslide/environment.py +++ b/gloss-v1/grader/gloss/environment.py @@ -20,11 +20,11 @@ import rfc8785 from jsonschema import Draft202012Validator -from acidslide import __version__ -from acidslide.export import EXPORT_HEIGHT, EXPORT_WIDTH, find_libreoffice -from acidslide.profile_contract import environment_profile_hashes, load_render_profiles -from acidslide.resources import resolve_normative_schema_file -from acidslide.source_tree import build_grader_source_tree_manifest +from gloss import __version__ +from gloss.export import EXPORT_HEIGHT, EXPORT_WIDTH, find_libreoffice +from gloss.profile_contract import environment_profile_hashes, load_render_profiles +from gloss.resources import resolve_normative_schema_file +from gloss.source_tree import build_grader_source_tree_manifest _PROCESS_ENVIRONMENT_KEYS = ( "FAKETIME", @@ -40,9 +40,9 @@ r"^FROM\s+(?P\S+)@(?Psha256:[0-9a-f]{64})(?:\s+AS\s+(?P\S+))?\s*$", re.MULTILINE | re.IGNORECASE, ) -_DEFAULT_DOCKERFILE = Path("/opt/acidslide/build/Dockerfile") -_DEFAULT_LOCKFILE = Path("/opt/acidslide/grader/uv.lock") -_DEFAULT_GRADER_ROOT = Path("/opt/acidslide/grader") +_DEFAULT_DOCKERFILE = Path("/opt/gloss/build/Dockerfile") +_DEFAULT_LOCKFILE = Path("/opt/gloss/grader/uv.lock") +_DEFAULT_GRADER_ROOT = Path("/opt/gloss/grader") class EnvironmentAttestationError(ValueError): @@ -137,7 +137,7 @@ def construct_environment_attestation_candidate( canary_report_path: Path, schema_path: Path | None = None, schema_dir: Path | None = None, - font_manifest_path: Path = Path("/opt/acidslide/benchmark/fonts/manifest.json"), + font_manifest_path: Path = Path("/opt/gloss/benchmark/fonts/manifest.json"), dockerfile_path: Path = _DEFAULT_DOCKERFILE, grader_lockfile_path: Path = _DEFAULT_LOCKFILE, grader_root: Path = _DEFAULT_GRADER_ROOT, @@ -166,7 +166,7 @@ def construct_environment_attestation_candidate( expected_font_environment = {"fontconfig_file": os.environ.get("FONTCONFIG_FILE")} payload: dict[str, Any] = { "schema_version": "1.0", - "attestation_id": "acidslide-environment-attestation-v1", + "attestation_id": "gloss-environment-attestation-v1", "canonicalization": "RFC8785-JCS", "attestation_state": "verified", "attested_at": attested_at, @@ -211,7 +211,7 @@ def reconstruct_environment_attestation( oci_image_digest: str, schema_path: Path | None = None, schema_dir: Path | None = None, - font_manifest_path: Path = Path("/opt/acidslide/benchmark/fonts/manifest.json"), + font_manifest_path: Path = Path("/opt/gloss/benchmark/fonts/manifest.json"), dockerfile_path: Path = _DEFAULT_DOCKERFILE, grader_lockfile_path: Path = _DEFAULT_LOCKFILE, grader_root: Path = _DEFAULT_GRADER_ROOT, diff --git a/acidslide-v1/grader/acidslide/evaluate.py b/gloss-v1/grader/gloss/evaluate.py similarity index 99% rename from acidslide-v1/grader/acidslide/evaluate.py rename to gloss-v1/grader/gloss/evaluate.py index 662344f..1dff6ed 100644 --- a/acidslide-v1/grader/acidslide/evaluate.py +++ b/gloss-v1/grader/gloss/evaluate.py @@ -4,9 +4,9 @@ from typing import TYPE_CHECKING -from acidslide.affected_slides import resolve_named_selector -from acidslide.checklist import SEVERITY_WEIGHTS, ChecklistItem -from acidslide.models import ( +from gloss.affected_slides import resolve_named_selector +from gloss.checklist import SEVERITY_WEIGHTS, ChecklistItem +from gloss.models import ( AntiCheatFlag, ChecklistItemResult, Severity, @@ -15,8 +15,8 @@ ) if TYPE_CHECKING: - from acidslide.inspect_ooxml import DeckGraph, SceneObject, SlideGraph - from acidslide.models import VisualComparisonResult + from gloss.inspect_ooxml import DeckGraph, SceneObject, SlideGraph + from gloss.models import VisualComparisonResult # Allowed fonts per §3 / §4.3 BUNDLED_FONTS = { diff --git a/acidslide-v1/grader/acidslide/export.py b/gloss-v1/grader/gloss/export.py similarity index 98% rename from acidslide-v1/grader/acidslide/export.py rename to gloss-v1/grader/gloss/export.py index 3f4b93d..b308d59 100644 --- a/acidslide-v1/grader/acidslide/export.py +++ b/gloss-v1/grader/gloss/export.py @@ -13,8 +13,8 @@ from PIL import Image from pypdf import PdfReader -from acidslide.models import SlideExport -from acidslide.resources import resolve_benchmark_dir +from gloss.models import SlideExport +from gloss.resources import resolve_benchmark_dir EXPORT_WIDTH = 1920 EXPORT_HEIGHT = 1080 @@ -124,7 +124,7 @@ def _pdf_to_pngs( # Try pdftoppm first (poppler-utils) pdftoppm = shutil.which("pdftoppm") if pdftoppm: - prefix = output_dir / "acidslide-render" + prefix = output_dir / "gloss-render" _run_conversion( [ pdftoppm, @@ -139,7 +139,7 @@ def _pdf_to_pngs( check=True, ) - png_files = sorted(output_dir.glob("acidslide-render-*.png"), key=_page_number) + png_files = sorted(output_dir.glob("gloss-render-*.png"), key=_page_number) if not png_files: msg = "pdftoppm failed to produce PNG output" raise RuntimeError(msg) diff --git a/acidslide-v1/grader/acidslide/inspect_ooxml.py b/gloss-v1/grader/gloss/inspect_ooxml.py similarity index 99% rename from acidslide-v1/grader/acidslide/inspect_ooxml.py rename to gloss-v1/grader/gloss/inspect_ooxml.py index 76424e0..3215556 100644 --- a/acidslide-v1/grader/acidslide/inspect_ooxml.py +++ b/gloss-v1/grader/gloss/inspect_ooxml.py @@ -9,7 +9,7 @@ from lxml import etree -from acidslide.mce import preprocess_markup_compatibility +from gloss.mce import preprocess_markup_compatibility if TYPE_CHECKING: from pathlib import Path diff --git a/acidslide-v1/grader/acidslide/mce.py b/gloss-v1/grader/gloss/mce.py similarity index 98% rename from acidslide-v1/grader/acidslide/mce.py rename to gloss-v1/grader/gloss/mce.py index 2db91a3..9709f19 100644 --- a/acidslide-v1/grader/acidslide/mce.py +++ b/gloss-v1/grader/gloss/mce.py @@ -9,7 +9,7 @@ from lxml import etree -from acidslide.resources import resolve_normative_schema_file +from gloss.resources import resolve_normative_schema_file if TYPE_CHECKING: from pathlib import Path @@ -42,7 +42,7 @@ def load_understood_namespaces(profile_path: Path | None = None) -> set[str]: """Load the exact understood namespace set from the v1 profile.""" path = resolve_normative_schema_file("mce-profile-v1.json", profile_path) profile: dict[str, Any] = json.loads(path.read_text(encoding="utf-8")) - if profile.get("profile_id") != "acidslide-mce-profile-v1": + if profile.get("profile_id") != "gloss-mce-profile-v1": raise MCEProfileError(f"Unsupported MCE profile: {path}") namespaces = profile.get("understood_namespaces") if not isinstance(namespaces, list) or not all(isinstance(value, str) for value in namespaces): @@ -56,7 +56,7 @@ def preprocess_markup_compatibility( *, preserved_evidence: list[dict[str, str]] | None = None, ) -> etree._Element: - """Produce the one validation/inspection tree required by AcidSlide v1. + """Produce the one validation/inspection tree required by Gloss v1. Unsupported ``AlternateContent`` with no fallback, malformed QName lists, undeclared prefixes, and unsupported ``MustUnderstand`` namespaces are diff --git a/acidslide-v1/grader/acidslide/models.py b/gloss-v1/grader/gloss/models.py similarity index 99% rename from acidslide-v1/grader/acidslide/models.py rename to gloss-v1/grader/gloss/models.py index 6bd76eb..36315dd 100644 --- a/acidslide-v1/grader/acidslide/models.py +++ b/gloss-v1/grader/gloss/models.py @@ -1,4 +1,4 @@ -"""Core data models for AcidSlide grader.""" +"""Core data models for Gloss grader.""" from __future__ import annotations @@ -710,7 +710,7 @@ def to_html(self) -> str: - AcidSlide report — {escape(self.submission_id or "local/control")} + Gloss report — {escape(self.submission_id or "local/control")} -

AcidSlide grade report — {status}

+

Gloss grade report — {status}

{self.verification_label}

Submission
{escape(self.submission_id or "local/control")}
@@ -748,7 +748,7 @@ def summary(self) -> str: else: status = "[green]PASS[/green]" if self.deck_passed else "[red]FAIL[/red]" lines = [ - f"AcidSlide Grade Report — {status}", + f"Gloss Grade Report — {status}", f" Verification: {self.verification_label}", f" Fidelity: {self.fidelity_score:.4f}" if self.fidelity_score is not None diff --git a/acidslide-v1/grader/acidslide/mutation_fixtures.py b/gloss-v1/grader/gloss/mutation_fixtures.py similarity index 97% rename from acidslide-v1/grader/acidslide/mutation_fixtures.py rename to gloss-v1/grader/gloss/mutation_fixtures.py index 152fd06..58c76f7 100644 --- a/acidslide-v1/grader/acidslide/mutation_fixtures.py +++ b/gloss-v1/grader/gloss/mutation_fixtures.py @@ -15,12 +15,12 @@ import rfc8785 -from acidslide.evaluate import evaluate_checklist -from acidslide.inspect_ooxml import DeckGraph, SceneObject, SlideGraph, TextRun -from acidslide.models import AntiCheatFlag, ChecklistItemResult, VisualComparisonResult +from gloss.evaluate import evaluate_checklist +from gloss.inspect_ooxml import DeckGraph, SceneObject, SlideGraph, TextRun +from gloss.models import AntiCheatFlag, ChecklistItemResult, VisualComparisonResult if TYPE_CHECKING: - from acidslide.checklist import ChecklistItem + from gloss.checklist import ChecklistItem OBJECT_SELECTORS = {"chart", "connector", "field", "group", "picture", "shape", "table"} EVIDENCE_SCOPE = ( @@ -100,7 +100,7 @@ def build_fixture_index( ) return { "schema_version": "1.0", - "fixture_index_id": "acidslide-generated-mutation-fixture-index-v1", + "fixture_index_id": "gloss-generated-mutation-fixture-index-v1", "evidence_scope": EVIDENCE_SCOPE, "source_inventory_id": assertion_inventory.get("inventory_id"), "candidate_contract_sha256": _candidate_contract_sha256(items), @@ -147,7 +147,7 @@ def build_mutation_expectations(fixture_index: dict[str, Any]) -> dict[str, Any] ) return { "schema_version": "1.0", - "expectation_set_id": "acidslide-generated-mutation-expectations-v1", + "expectation_set_id": "gloss-generated-mutation-expectations-v1", "evidence_scope": EVIDENCE_SCOPE, "fixture_index_id": fixture_index["fixture_index_id"], "summary": { @@ -205,7 +205,7 @@ def execute_fixture_matrix( killed_count = sum(result["mutant_killed"] for result in results) return { "schema_version": "1.0", - "execution_report_id": "acidslide-generated-mutation-execution-v1", + "execution_report_id": "gloss-generated-mutation-execution-v1", "evidence_scope": EVIDENCE_SCOPE, "fixture_index_id": fixture_index["fixture_index_id"], "summary": { diff --git a/acidslide-v1/grader/acidslide/package_hash.py b/gloss-v1/grader/gloss/package_hash.py similarity index 98% rename from acidslide-v1/grader/acidslide/package_hash.py rename to gloss-v1/grader/gloss/package_hash.py index e493d7e..da97e5f 100644 --- a/acidslide-v1/grader/acidslide/package_hash.py +++ b/gloss-v1/grader/gloss/package_hash.py @@ -1,4 +1,4 @@ -"""Normative AcidSlide v1 canonical OOXML package hashing.""" +"""Normative Gloss v1 canonical OOXML package hashing.""" from __future__ import annotations @@ -15,8 +15,8 @@ from lxml import etree -from acidslide.mce import load_understood_namespaces, preprocess_markup_compatibility -from acidslide.resources import resolve_normative_schema_file +from gloss.mce import load_understood_namespaces, preprocess_markup_compatibility +from gloss.resources import resolve_normative_schema_file CONTENT_TYPES = "[Content_Types].xml" CONTENT_TYPES_NS = "http://schemas.openxmlformats.org/package/2006/content-types" @@ -194,7 +194,7 @@ def detect_gold_copy( def _load_profile(explicit: Path | None) -> tuple[Path, dict[str, Any]]: path = resolve_normative_schema_file("canonical-package-hash-v1.json", explicit) profile: dict[str, Any] = json.loads(path.read_text(encoding="utf-8")) - if profile.get("profile_id") != "acidslide-canonical-package-hash-v1": + if profile.get("profile_id") != "gloss-canonical-package-hash-v1": raise PackageHashError(f"Unsupported canonical package hash profile: {path}") return path, profile @@ -483,7 +483,7 @@ def _is_xml_content_type(content_type: str) -> bool: def _load_root_map(path: Path) -> set[tuple[str, str]]: document = json.loads(path.read_text(encoding="utf-8")) - if document.get("mapping_id") != "acidslide-schema-root-map-v1": + if document.get("mapping_id") != "gloss-schema-root-map-v1": raise PackageHashError(f"Unsupported schema/root mapping: {path}") keys = {(entry["content_type"], entry["root_qname"]) for entry in document["entries"]} if len(keys) != len(document["entries"]): diff --git a/acidslide-v1/grader/acidslide/pipeline.py b/gloss-v1/grader/gloss/pipeline.py similarity index 96% rename from acidslide-v1/grader/acidslide/pipeline.py rename to gloss-v1/grader/gloss/pipeline.py index 330f83a..befff98 100644 --- a/acidslide-v1/grader/acidslide/pipeline.py +++ b/gloss-v1/grader/gloss/pipeline.py @@ -11,14 +11,14 @@ import rfc8785 -from acidslide import __version__ -from acidslide.checklist import load_checklist -from acidslide.compare import compare_slides -from acidslide.environment import environment_details -from acidslide.evaluate import compute_fidelity_score, compute_tier_scores, evaluate_checklist -from acidslide.export import export_slides -from acidslide.inspect_ooxml import extract_deck_graph -from acidslide.models import ( +from gloss import __version__ +from gloss.checklist import load_checklist +from gloss.compare import compare_slides +from gloss.environment import environment_details +from gloss.evaluate import compute_fidelity_score, compute_tier_scores, evaluate_checklist +from gloss.export import export_slides +from gloss.inspect_ooxml import extract_deck_graph +from gloss.models import ( AntiCheatFlag, ArtifactReportContext, ChecklistItemResult, @@ -32,11 +32,11 @@ StableError, VisualComparisonResult, ) -from acidslide.package_hash import canonical_package_identity, sha256_file -from acidslide.provenance import ScoringCohortProvenance, load_signed_release_provenance -from acidslide.quarantine import quarantine_check -from acidslide.resources import resolve_benchmark_dir -from acidslide.schema_validate import validate_schema +from gloss.package_hash import canonical_package_identity, sha256_file +from gloss.provenance import ScoringCohortProvenance, load_signed_release_provenance +from gloss.quarantine import quarantine_check +from gloss.resources import resolve_benchmark_dir +from gloss.schema_validate import validate_schema TIER_SLIDES: dict[int, list[int]] = { 1: list(range(1, 6)), @@ -520,7 +520,7 @@ def _report( verification_errors: list[StableError], ) -> GradeReport: return GradeReport( - benchmark_version="acidslide-v1.0.0", + benchmark_version="gloss-v1.0.0", grader_version=__version__, scoring_cohort_id=cohort.scoring_cohort_id, scoring_manifest_sha256=cohort.scoring_manifest_sha256, diff --git a/acidslide-v1/grader/acidslide/profile_contract.py b/gloss-v1/grader/gloss/profile_contract.py similarity index 96% rename from acidslide-v1/grader/acidslide/profile_contract.py rename to gloss-v1/grader/gloss/profile_contract.py index e0c4e70..273c92e 100644 --- a/acidslide-v1/grader/acidslide/profile_contract.py +++ b/gloss-v1/grader/gloss/profile_contract.py @@ -1,4 +1,4 @@ -"""Load and hash the normative AcidSlide render/comparison profiles.""" +"""Load and hash the normative Gloss render/comparison profiles.""" from __future__ import annotations @@ -10,13 +10,13 @@ from jsonschema import Draft202012Validator -from acidslide.package_hash import sha256_file -from acidslide.resources import resolve_normative_schema_file +from gloss.package_hash import sha256_file +from gloss.resources import resolve_normative_schema_file if TYPE_CHECKING: from pathlib import Path -TREE_DOMAIN = b"AcidSlide deterministic tree hash v1\x00" +TREE_DOMAIN = b"Gloss deterministic tree hash v1\x00" _PROFILE_FILES = { "export": ("export-profile-v1.json", "export-profile.schema.json"), diff --git a/acidslide-v1/grader/acidslide/provenance.py b/gloss-v1/grader/gloss/provenance.py similarity index 97% rename from acidslide-v1/grader/acidslide/provenance.py rename to gloss-v1/grader/gloss/provenance.py index df7856a..a548223 100644 --- a/acidslide-v1/grader/acidslide/provenance.py +++ b/gloss-v1/grader/gloss/provenance.py @@ -19,8 +19,8 @@ from cryptography.exceptions import InvalidSignature from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PublicKey -from acidslide.resources import resolve_normative_schema_file -from acidslide.source_tree import ( +from gloss.resources import resolve_normative_schema_file +from gloss.source_tree import ( GraderSourceTreeError, GraderSourceTreeIdentity, verify_grader_source_tree, @@ -31,7 +31,7 @@ _PREFIXED_SHA256 = re.compile(r"^sha256:[0-9a-f]{64}$") _KEY_ID = re.compile(r"^[a-z0-9][a-z0-9._-]{2,63}$") -_RELEASE_CHANNEL = "acidslide-v1-stable" +_RELEASE_CHANNEL = "gloss-v1-stable" _DEFAULT_CLOCK_SKEW = timedelta(minutes=5) _INDEX_FIELDS = { "schema_version", @@ -188,8 +188,7 @@ def load_signed_release_provenance( _accept_release_head( verified_chain, acceptance_state_path or _default_acceptance_state_path(), - trusted_genesis_sha256=trusted_genesis_sha256 - or os.getenv("ACIDSLIDE_TRUSTED_GENESIS_SHA256"), + trusted_genesis_sha256=trusted_genesis_sha256 or os.getenv("GLOSS_TRUSTED_GENESIS_SHA256"), ) return provenance @@ -197,7 +196,7 @@ def load_signed_release_provenance( def _resolve_grader_source(benchmark_dir: Path, explicit: Path | None) -> Path: configured = explicit if configured is None: - environment_path = os.getenv("ACIDSLIDE_GRADER_SOURCE_PATH") + environment_path = os.getenv("GLOSS_GRADER_SOURCE_PATH") configured = Path(environment_path).expanduser() if environment_path else None if configured is not None: return configured @@ -274,7 +273,7 @@ def _verify_release_chain( for expected_sequence, index in enumerate(indexes, start=1): _validate_index_shape(index) if index.get("channel") != _RELEASE_CHANNEL: - raise ReleaseProvenanceError("release index channel is not acidslide-v1-stable") + raise ReleaseProvenanceError("release index channel is not gloss-v1-stable") if index.get("acceptance_policy") != "highest_valid_chain_head": raise ReleaseProvenanceError("release index acceptance policy is unsupported") state = index.get("state") @@ -365,9 +364,9 @@ def _validate_index_shape(index: dict[str, Any]) -> None: raise ReleaseProvenanceError("release index has missing or unsupported fields") if index.get("schema_version") != "1.0": raise ReleaseProvenanceError("release index schema version is unsupported") - if index.get("release_id") != "acidslide-v1.0.0": + if index.get("release_id") != "gloss-v1.0.0": raise ReleaseProvenanceError("release index release_id is unsupported") - if index.get("benchmark_version") != "acidslide-v1.0.0": + if index.get("benchmark_version") != "gloss-v1.0.0": raise ReleaseProvenanceError("release index benchmark_version is unsupported") @@ -410,12 +409,12 @@ def _verification_time(value: datetime | None) -> datetime: def _default_acceptance_state_path() -> Path: - explicit = os.getenv("ACIDSLIDE_RELEASE_STATE_PATH") + explicit = os.getenv("GLOSS_RELEASE_STATE_PATH") if explicit: return Path(explicit).expanduser() state_home = os.getenv("XDG_STATE_HOME") root = Path(state_home).expanduser() if state_home else Path.home() / ".local" / "state" - return root / "acidslide" / "release-head-v1.json" + return root / "gloss" / "release-head-v1.json" def _accept_release_head( diff --git a/acidslide-v1/grader/acidslide/quarantine.py b/gloss-v1/grader/gloss/quarantine.py similarity index 99% rename from acidslide-v1/grader/acidslide/quarantine.py rename to gloss-v1/grader/gloss/quarantine.py index 7cd6b6a..f3e98fd 100644 --- a/acidslide-v1/grader/acidslide/quarantine.py +++ b/gloss-v1/grader/gloss/quarantine.py @@ -7,7 +7,7 @@ from lxml import etree -from acidslide.models import QuarantineResult +from gloss.models import QuarantineResult if TYPE_CHECKING: from pathlib import Path diff --git a/acidslide-v1/grader/acidslide/release_evidence.py b/gloss-v1/grader/gloss/release_evidence.py similarity index 98% rename from acidslide-v1/grader/acidslide/release_evidence.py rename to gloss-v1/grader/gloss/release_evidence.py index 41bdf2a..f33eb33 100644 --- a/acidslide-v1/grader/acidslide/release_evidence.py +++ b/gloss-v1/grader/gloss/release_evidence.py @@ -30,7 +30,7 @@ def require(self, condition: bool, message: str) -> None: ... def prompt_oracle_review_sha256(oracle: dict[str, Any]) -> str: """Hash the domain-separated, approval-free prompt-oracle projection.""" projection: dict[str, Any] = { - "domain": "AcidSlide prompt requirements oracle review v1", + "domain": "Gloss prompt requirements oracle review v1", "oracle": {key: value for key, value in oracle.items() if key != "independent_reviews"}, } return hashlib.sha256(rfc8785.dumps(projection)).hexdigest() @@ -39,7 +39,7 @@ def prompt_oracle_review_sha256(oracle: dict[str, Any]) -> str: def assertion_inventory_review_sha256(inventory: dict[str, Any]) -> str: """Hash the domain-separated, approval-free assertion-inventory projection.""" projection: dict[str, Any] = { - "domain": "AcidSlide scored assertion inventory review v1", + "domain": "Gloss scored assertion inventory review v1", "inventory": {key: value for key, value in inventory.items() if key != "review"}, } return f"sha256:{hashlib.sha256(rfc8785.dumps(projection)).hexdigest()}" diff --git a/acidslide-v1/grader/acidslide/resources.py b/gloss-v1/grader/gloss/resources.py similarity index 91% rename from acidslide-v1/grader/acidslide/resources.py rename to gloss-v1/grader/gloss/resources.py index 8dd563e..ea59d2f 100644 --- a/acidslide-v1/grader/acidslide/resources.py +++ b/gloss-v1/grader/gloss/resources.py @@ -14,7 +14,7 @@ def resolve_benchmark_dir(explicit: Path | None = None) -> Path: """Return the benchmark data directory, or raise with actionable context.""" candidates = _candidates( explicit=explicit, - environment_variable="ACIDSLIDE_BENCHMARK_DIR", + environment_variable="GLOSS_BENCHMARK_DIR", packaged_name="benchmark", source_name="benchmark", ) @@ -24,7 +24,7 @@ def resolve_benchmark_dir(explicit: Path | None = None) -> Path: searched = ", ".join(str(path) for path in candidates) msg = ( - "AcidSlide benchmark data is unavailable. Expected checklist/ and tiers/ " + "Gloss benchmark data is unavailable. Expected checklist/ and tiers/ " f"under one of: {searched}" ) raise BenchmarkDataError(msg) @@ -34,7 +34,7 @@ def resolve_schema_dir(explicit: Path | None = None) -> Path: """Return the ECMA-376 Transitional XSD directory.""" candidates = _candidates( explicit=explicit, - environment_variable="ACIDSLIDE_SCHEMA_DIR", + environment_variable="GLOSS_SCHEMA_DIR", packaged_name="schemas/ecma-376/xsd-transitional", source_name="schemas/ecma-376/xsd-transitional", ) @@ -57,7 +57,7 @@ def resolve_normative_schema_file(name: str, explicit: Path | None = None) -> Pa raise ValueError(f"Normative schema name must be a basename: {name!r}") candidates = _candidates( explicit=explicit, - environment_variable="ACIDSLIDE_SCHEMA_PROFILE_DIR", + environment_variable="GLOSS_SCHEMA_PROFILE_DIR", packaged_name="schemas", source_name="schemas", ) @@ -91,7 +91,7 @@ def _candidates( [ package_dir / "data" / packaged_name, package_dir.parents[1] / source_name, - Path("/opt/acidslide") / source_name, + Path("/opt/gloss") / source_name, ] ) diff --git a/acidslide-v1/grader/acidslide/scene_graph.py b/gloss-v1/grader/gloss/scene_graph.py similarity index 99% rename from acidslide-v1/grader/acidslide/scene_graph.py rename to gloss-v1/grader/gloss/scene_graph.py index b39c791..fbf0343 100644 --- a/acidslide-v1/grader/acidslide/scene_graph.py +++ b/gloss-v1/grader/gloss/scene_graph.py @@ -16,9 +16,9 @@ import rfc8785 from lxml import etree -from acidslide.mce import MC_NAMESPACE -from acidslide.package_hash import sha256_file -from acidslide.resources import resolve_normative_schema_file +from gloss.mce import MC_NAMESPACE +from gloss.package_hash import sha256_file +from gloss.resources import resolve_normative_schema_file PRESENTATION = "ppt/presentation.xml" PRESENTATION_RELS = "ppt/_rels/presentation.xml.rels" @@ -120,7 +120,7 @@ def _load_profile(explicit: Path | None) -> tuple[Path, dict[str, Any]]: profile: dict[str, Any] = json.loads(path.read_text(encoding="utf-8")) except (OSError, json.JSONDecodeError) as exc: raise SceneGraphError(f"Scene-graph profile is unreadable: {path}") from exc - if profile.get("profile_id") != "acidslide-scene-graph-profile-v1": + if profile.get("profile_id") != "gloss-scene-graph-profile-v1": raise SceneGraphError(f"Unsupported scene-graph profile: {path}") return path, profile diff --git a/acidslide-v1/grader/acidslide/schema_validate.py b/gloss-v1/grader/gloss/schema_validate.py similarity index 97% rename from acidslide-v1/grader/acidslide/schema_validate.py rename to gloss-v1/grader/gloss/schema_validate.py index ac1b218..03166a4 100644 --- a/acidslide-v1/grader/acidslide/schema_validate.py +++ b/gloss-v1/grader/gloss/schema_validate.py @@ -9,13 +9,13 @@ from lxml import etree -from acidslide.mce import ( +from gloss.mce import ( MCEProfileError, load_understood_namespaces, preprocess_markup_compatibility, ) -from acidslide.models import SchemaValidationResult -from acidslide.resources import resolve_normative_schema_file, resolve_schema_dir +from gloss.models import SchemaValidationResult +from gloss.resources import resolve_normative_schema_file, resolve_schema_dir if TYPE_CHECKING: from collections.abc import Iterable @@ -160,7 +160,7 @@ def validate_schema( def _load_root_map(path: Path) -> dict[tuple[str, str], str]: document = json.loads(path.read_text(encoding="utf-8")) - if document.get("mapping_id") != "acidslide-schema-root-map-v1": + if document.get("mapping_id") != "gloss-schema-root-map-v1": raise ValueError(f"Unsupported schema/root mapping: {path}") mapping: dict[tuple[str, str], str] = {} for entry in document.get("entries", []): diff --git a/acidslide-v1/grader/acidslide/source_tree.py b/gloss-v1/grader/gloss/source_tree.py similarity index 98% rename from acidslide-v1/grader/acidslide/source_tree.py rename to gloss-v1/grader/gloss/source_tree.py index 5c41161..ff79fac 100644 --- a/acidslide-v1/grader/acidslide/source_tree.py +++ b/gloss-v1/grader/gloss/source_tree.py @@ -22,7 +22,7 @@ "entries", } _ENTRY_FIELDS = {"path", "byte_length", "sha256", "executable"} -_LOGICAL_ROOT = "acidslide-v1/grader" +_LOGICAL_ROOT = "gloss-v1/grader" class GraderSourceTreeError(RuntimeError): @@ -47,7 +47,7 @@ def build_grader_source_tree_manifest(root: Path, profile_path: Path) -> dict[st _validate_directory_inventory(directories, {entry["path"] for entry in entries}) return { "schema_version": "1.0", - "manifest_id": "acidslide-grader-source-tree-manifest-v1", + "manifest_id": "gloss-grader-source-tree-manifest-v1", "source_tree_profile_sha256": profile_sha256, "root": _LOGICAL_ROOT, "entries": entries, @@ -95,7 +95,7 @@ def _load_profile(path: Path) -> str: raise GraderSourceTreeError("grader source-tree profile must be an object") if ( profile.get("schema_version") != "1.0" - or profile.get("profile_id") != "acidslide-grader-source-tree-v1" + or profile.get("profile_id") != "gloss-grader-source-tree-v1" or profile.get("root") != _LOGICAL_ROOT or profile.get("manifest_canonicalization") != "RFC8785-JCS" or profile.get("manifest_digest") != "SHA-256-lowercase-hex-prefixed" @@ -117,7 +117,7 @@ def _load_manifest(path: Path) -> tuple[bytes, dict[str, Any]]: raise GraderSourceTreeError("grader source-tree manifest has missing or unsupported fields") if ( manifest.get("schema_version") != "1.0" - or manifest.get("manifest_id") != "acidslide-grader-source-tree-manifest-v1" + or manifest.get("manifest_id") != "gloss-grader-source-tree-manifest-v1" or manifest.get("root") != _LOGICAL_ROOT ): raise GraderSourceTreeError("grader source-tree manifest identity is unsupported") diff --git a/acidslide-v1/grader/hatch_build.py b/gloss-v1/grader/hatch_build.py similarity index 75% rename from acidslide-v1/grader/hatch_build.py rename to gloss-v1/grader/hatch_build.py index 80d752e..51c32fe 100644 --- a/acidslide-v1/grader/hatch_build.py +++ b/gloss-v1/grader/hatch_build.py @@ -15,20 +15,20 @@ def initialize(self, version: str, build_data: dict[str, Any]) -> None: project_root = Path(self.root) force_include: dict[str, str] = build_data["force_include"] for name in ("benchmark", "schemas"): - sdist_source = project_root / "acidslide" / "data" / name + sdist_source = project_root / "gloss" / "data" / name if sdist_source.is_dir(): continue repository_source = project_root.parent / name if not repository_source.is_dir(): - msg = f"Required AcidSlide package data is missing: {name}" + msg = f"Required Gloss package data is missing: {name}" raise FileNotFoundError(msg) - force_include[str(repository_source)] = f"acidslide/data/{name}" + force_include[str(repository_source)] = f"gloss/data/{name}" # The source tree keeps the public release keyring beside benchmark/. # A frozen release wheel mirrors it beside the packaged benchmark so # local signature verification does not depend on repository layout. - packaged_keyring = project_root / "acidslide" / "data" / "RELEASE_KEYS.json" + packaged_keyring = project_root / "gloss" / "data" / "RELEASE_KEYS.json" repository_keyring = project_root.parent / "RELEASE_KEYS.json" if not packaged_keyring.is_file() and repository_keyring.is_file(): - force_include[str(repository_keyring)] = "acidslide/data/RELEASE_KEYS.json" + force_include[str(repository_keyring)] = "gloss/data/RELEASE_KEYS.json" diff --git a/acidslide-v1/grader/pyproject.toml b/gloss-v1/grader/pyproject.toml similarity index 81% rename from acidslide-v1/grader/pyproject.toml rename to gloss-v1/grader/pyproject.toml index 5a9470e..df01303 100644 --- a/acidslide-v1/grader/pyproject.toml +++ b/gloss-v1/grader/pyproject.toml @@ -3,9 +3,9 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "acidslide" +name = "gloss" version = "1.0.0a1" -description = "AcidSlide benchmark grader — ECMA-376 slide generation fidelity testing" +description = "Gloss benchmark grader — ECMA-376 slide generation fidelity testing" readme = "README.md" requires-python = ">=3.12" license = "Apache-2.0" @@ -36,7 +36,7 @@ dev = [ ] [project.scripts] -acidslide = "acidslide.cli:main" +gloss = "gloss.cli:main" [tool.ruff] target-version = "py312" @@ -53,12 +53,12 @@ strict = true addopts = "--strict-config --strict-markers" [tool.hatch.build.targets.sdist.force-include] -"../benchmark" = "acidslide/data/benchmark" -"../schemas" = "acidslide/data/schemas" +"../benchmark" = "gloss/data/benchmark" +"../schemas" = "gloss/data/schemas" [tool.hatch.build.targets.sdist.hooks.custom] [tool.hatch.build.targets.wheel] -packages = ["acidslide"] +packages = ["gloss"] [tool.hatch.build.targets.wheel.hooks.custom] diff --git a/acidslide-v1/grader/tests/test_checklist.py b/gloss-v1/grader/tests/test_checklist.py similarity index 98% rename from acidslide-v1/grader/tests/test_checklist.py rename to gloss-v1/grader/tests/test_checklist.py index bd411c9..dcd73ea 100644 --- a/acidslide-v1/grader/tests/test_checklist.py +++ b/gloss-v1/grader/tests/test_checklist.py @@ -4,7 +4,7 @@ import pytest -from acidslide.checklist import load_checklist +from gloss.checklist import load_checklist @pytest.fixture diff --git a/acidslide-v1/grader/tests/test_cli.py b/gloss-v1/grader/tests/test_cli.py similarity index 94% rename from acidslide-v1/grader/tests/test_cli.py rename to gloss-v1/grader/tests/test_cli.py index 534d482..f105635 100644 --- a/acidslide-v1/grader/tests/test_cli.py +++ b/gloss-v1/grader/tests/test_cli.py @@ -11,8 +11,8 @@ from test_models import _report as _diagnostic_report from test_pipeline import _benchmark, _cohort, _context, _patch_successful_stages, _submission -from acidslide.cli import main -from acidslide.models import ( +from gloss.cli import main +from gloss.models import ( DisqualificationState, GradeReport, QuarantineResult, @@ -74,7 +74,7 @@ def test_grade_writes_real_html(monkeypatch: pytest.MonkeyPatch, tmp_path: Path) submission = _submission(tmp_path / "submission.pptx") context_path, _environment = _context_file(tmp_path, submission) output = tmp_path / "report.html" - monkeypatch.setattr("acidslide.pipeline.run_pipeline", lambda **_kwargs: _report(complete=True)) + monkeypatch.setattr("gloss.pipeline.run_pipeline", lambda **_kwargs: _report(complete=True)) result = CliRunner().invoke( main, @@ -100,7 +100,7 @@ def test_grade_incomplete_report_exits_two(monkeypatch: pytest.MonkeyPatch, tmp_ submission = _submission(tmp_path / "submission.pptx") context_path, _environment = _context_file(tmp_path, submission) monkeypatch.setattr( - "acidslide.pipeline.run_pipeline", + "gloss.pipeline.run_pipeline", lambda **_kwargs: _report(complete=False), ) @@ -175,7 +175,7 @@ def test_grade_real_local_pipeline_accepts_verified_context( context_path, environment_attestation = _context_file(tmp_path, submission) _patch_successful_stages(monkeypatch) monkeypatch.setattr( - "acidslide.pipeline.load_signed_release_provenance", + "gloss.pipeline.load_signed_release_provenance", lambda _benchmark: _cohort(environment_attestation), ) @@ -215,7 +215,7 @@ def test_grade_rejects_environment_attestation_jcs_tamper( context_path = tmp_path / "artifact-context.json" context_path.write_text(json.dumps(context_payload), encoding="utf-8") monkeypatch.setattr( - "acidslide.pipeline.load_signed_release_provenance", + "gloss.pipeline.load_signed_release_provenance", lambda _benchmark: _cohort(environment_attestation), ) @@ -242,7 +242,7 @@ def test_export_prints_slide_path_name(monkeypatch: pytest.MonkeyPatch, tmp_path submission = tmp_path / "submission.pptx" submission.write_bytes(b"pptx") monkeypatch.setattr( - "acidslide.export.export_slides", + "gloss.export.export_slides", lambda _submission, output, **_kwargs: [SlideExport(1, output / "slide-01.png")], ) @@ -258,11 +258,11 @@ def test_validate_exits_two_when_schema_cannot_run( submission = tmp_path / "submission.pptx" submission.write_bytes(b"pptx") monkeypatch.setattr( - "acidslide.quarantine.quarantine_check", + "gloss.quarantine.quarantine_check", lambda _path: QuarantineResult(passed=True), ) monkeypatch.setattr( - "acidslide.schema_validate.validate_schema", + "gloss.schema_validate.validate_schema", lambda _path: SchemaValidationResult( valid=False, performed=False, diff --git a/acidslide-v1/grader/tests/test_compare.py b/gloss-v1/grader/tests/test_compare.py similarity index 97% rename from acidslide-v1/grader/tests/test_compare.py rename to gloss-v1/grader/tests/test_compare.py index ce49728..cacad89 100644 --- a/acidslide-v1/grader/tests/test_compare.py +++ b/gloss-v1/grader/tests/test_compare.py @@ -7,7 +7,7 @@ import numpy as np from PIL import Image -from acidslide.compare import compare_slides +from gloss.compare import compare_slides if TYPE_CHECKING: from pathlib import Path diff --git a/acidslide-v1/grader/tests/test_evaluate.py b/gloss-v1/grader/tests/test_evaluate.py similarity index 98% rename from acidslide-v1/grader/tests/test_evaluate.py rename to gloss-v1/grader/tests/test_evaluate.py index 8385f96..878a4c0 100644 --- a/acidslide-v1/grader/tests/test_evaluate.py +++ b/gloss-v1/grader/tests/test_evaluate.py @@ -6,14 +6,14 @@ from lxml import etree -from acidslide.checklist import ChecklistItem, FailureMode, Verification -from acidslide.evaluate import ( +from gloss.checklist import ChecklistItem, FailureMode, Verification +from gloss.evaluate import ( compute_fidelity_score, compute_tier_scores, evaluate_checklist, ) -from acidslide.inspect_ooxml import DeckGraph, SceneObject, SlideGraph, TextRun, _parse_shape -from acidslide.models import VisualComparisonResult +from gloss.inspect_ooxml import DeckGraph, SceneObject, SlideGraph, TextRun, _parse_shape +from gloss.models import VisualComparisonResult def _make_item( diff --git a/acidslide-v1/grader/tests/test_export.py b/gloss-v1/grader/tests/test_export.py similarity index 94% rename from acidslide-v1/grader/tests/test_export.py rename to gloss-v1/grader/tests/test_export.py index 22641df..62e0244 100644 --- a/acidslide-v1/grader/tests/test_export.py +++ b/gloss-v1/grader/tests/test_export.py @@ -12,8 +12,8 @@ from PIL import Image from pypdf import PdfWriter -from acidslide import export -from acidslide.models import SlideExport +from gloss import export +from gloss.models import SlideExport _MAC_FONTCONFIG_STDERR = "\n".join( ( @@ -59,7 +59,7 @@ def test_pdf_to_pngs_sorts_pages_numerically( ) -> None: monkeypatch.setattr(export, "EXPORT_WIDTH", 64) monkeypatch.setattr(export, "EXPORT_HEIGHT", 36) - monkeypatch.setattr("acidslide.export.shutil.which", lambda _name: "/usr/bin/pdftoppm") + monkeypatch.setattr("gloss.export.shutil.which", lambda _name: "/usr/bin/pdftoppm") def fake_run(command: list[str], *, check: bool) -> subprocess.CompletedProcess[str]: assert check is True @@ -78,7 +78,7 @@ def fake_run(command: list[str], *, check: bool) -> subprocess.CompletedProcess[ def test_pdf_to_pngs_requires_converter(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None: - monkeypatch.setattr("acidslide.export.shutil.which", lambda _name: None) + monkeypatch.setattr("gloss.export.shutil.which", lambda _name: None) with pytest.raises(RuntimeError, match="poppler-utils"): export._pdf_to_pngs(tmp_path / "slides.pdf", tmp_path) @@ -86,7 +86,7 @@ def test_pdf_to_pngs_requires_converter(tmp_path: Path, monkeypatch: pytest.Monk def test_run_conversion_surfaces_nonzero_exit(monkeypatch: pytest.MonkeyPatch) -> None: monkeypatch.setattr( - "acidslide.export.subprocess.run", + "gloss.export.subprocess.run", lambda *_args, **_kwargs: subprocess.CompletedProcess(["renderer"], 7, "", "broken"), ) @@ -98,7 +98,7 @@ def test_run_conversion_rejects_unclassified_success_stderr( monkeypatch: pytest.MonkeyPatch, ) -> None: monkeypatch.setattr( - "acidslide.export.subprocess.run", + "gloss.export.subprocess.run", lambda *_args, **_kwargs: subprocess.CompletedProcess( ["libreoffice"], 0, "converted", "unexpected warning" ), @@ -112,7 +112,7 @@ def test_run_conversion_rejects_exact_mac_fontconfig_warning_bundle( monkeypatch: pytest.MonkeyPatch, ) -> None: monkeypatch.setattr( - "acidslide.export.subprocess.run", + "gloss.export.subprocess.run", lambda *_args, **_kwargs: subprocess.CompletedProcess( ["libreoffice"], 0, "converted", _MAC_FONTCONFIG_STDERR + "\n" ), @@ -130,7 +130,7 @@ def test_run_conversion_rejects_mac_bundle_with_additional_unknown_warning( ) -> None: stderr = _MAC_FONTCONFIG_STDERR + "\nunknown fourth warning\n" monkeypatch.setattr( - "acidslide.export.subprocess.run", + "gloss.export.subprocess.run", lambda *_args, **_kwargs: subprocess.CompletedProcess( ["libreoffice"], 0, "converted", stderr ), @@ -145,7 +145,7 @@ def test_run_conversion_accepts_exact_javaldx_diagnostic( ) -> None: warning = "Warning: failed to launch javaldx - java may not function correctly" monkeypatch.setattr( - "acidslide.export.subprocess.run", + "gloss.export.subprocess.run", lambda *_args, **_kwargs: subprocess.CompletedProcess( ["libreoffice"], 0, "converted", warning + "\n" ), @@ -157,7 +157,7 @@ def test_run_conversion_accepts_exact_javaldx_diagnostic( def test_find_libreoffice_failure_is_actionable(monkeypatch: pytest.MonkeyPatch) -> None: - monkeypatch.setattr("acidslide.export.shutil.which", lambda _candidate: None) + monkeypatch.setattr("gloss.export.shutil.which", lambda _candidate: None) with pytest.raises(RuntimeError, match="LibreOffice not found"): export.find_libreoffice() @@ -261,7 +261,7 @@ def test_local_export_generates_isolated_fontconfig_for_libreoffice_only( sentinel = "preserved-value" monkeypatch.delenv("FONTCONFIG_FILE", raising=False) monkeypatch.delenv("FONTCONFIG_PATH", raising=False) - monkeypatch.setenv("ACIDSLIDE_EXPORT_TEST_SENTINEL", sentinel) + monkeypatch.setenv("GLOSS_EXPORT_TEST_SENTINEL", sentinel) monkeypatch.setattr(export, "resolve_benchmark_dir", lambda: benchmark) observed_environment: dict[str, str] | None = None @@ -275,7 +275,7 @@ def fake_run( assert check is True assert env is not None observed_environment = env - assert env["ACIDSLIDE_EXPORT_TEST_SENTINEL"] == sentinel + assert env["GLOSS_EXPORT_TEST_SENTINEL"] == sentinel config_path = Path(env["FONTCONFIG_FILE"]) assert Path(env["FONTCONFIG_PATH"]) == config_path.parent root = ET.parse(config_path).getroot() @@ -305,8 +305,8 @@ def test_existing_frozen_fontconfig_environment_is_preserved_exactly( ) -> None: source = tmp_path / "submission.pptx" source.write_bytes(b"pptx") - frozen_file = "/opt/acidslide/fontconfig/fonts.conf" - frozen_path = "/opt/acidslide/fontconfig" + frozen_file = "/opt/gloss/fontconfig/fonts.conf" + frozen_path = "/opt/gloss/fontconfig" monkeypatch.setenv("FONTCONFIG_FILE", frozen_file) monkeypatch.setenv("FONTCONFIG_PATH", frozen_path) monkeypatch.setattr( @@ -366,7 +366,7 @@ def test_run_conversion_surfaces_timeout(monkeypatch: pytest.MonkeyPatch) -> Non def timeout(*_args: object, **_kwargs: object) -> None: raise subprocess.TimeoutExpired("renderer", export.EXPORT_TIMEOUT) - monkeypatch.setattr("acidslide.export.subprocess.run", timeout) + monkeypatch.setattr("gloss.export.subprocess.run", timeout) with pytest.raises(RuntimeError, match="timed out"): export._run_conversion(["renderer"], check=True) diff --git a/acidslide-v1/grader/tests/test_export_determinism_evidence.py b/gloss-v1/grader/tests/test_export_determinism_evidence.py similarity index 96% rename from acidslide-v1/grader/tests/test_export_determinism_evidence.py rename to gloss-v1/grader/tests/test_export_determinism_evidence.py index 4e8214c..b9d0dba 100644 --- a/acidslide-v1/grader/tests/test_export_determinism_evidence.py +++ b/gloss-v1/grader/tests/test_export_determinism_evidence.py @@ -11,7 +11,7 @@ import jsonschema -from acidslide.release_evidence import validate_export_determinism_evidence +from gloss.release_evidence import validate_export_determinism_evidence SCHEMA_PATH = ( Path(__file__).resolve().parents[2] / "schemas" / "export-determinism-evidence.schema.json" @@ -80,8 +80,8 @@ def _evidence() -> tuple[dict[str, Any], dict[str, Any]]: return ( { "schema_version": "1.0", - "evidence_id": "acidslide-export-determinism-evidence-v1", - "benchmark_version": "acidslide-v1.0.0", + "evidence_id": "gloss-export-determinism-evidence-v1", + "benchmark_version": "gloss-v1.0.0", "canonicalization": "RFC8785-JCS", "measured_at": "2026-07-18T00:00:00Z", "bindings": copy.deepcopy(bindings), diff --git a/acidslide-v1/grader/tests/test_integration.py b/gloss-v1/grader/tests/test_integration.py similarity index 93% rename from acidslide-v1/grader/tests/test_integration.py rename to gloss-v1/grader/tests/test_integration.py index 91c91e5..e913ed5 100644 --- a/acidslide-v1/grader/tests/test_integration.py +++ b/gloss-v1/grader/tests/test_integration.py @@ -1,4 +1,4 @@ -"""Integration tests against the promoted canonical AcidSlide v1 gold deck.""" +"""Integration tests against the promoted canonical Gloss v1 gold deck.""" from __future__ import annotations @@ -6,16 +6,16 @@ import pytest -from acidslide.checklist import load_checklist -from acidslide.evaluate import compute_fidelity_score, evaluate_checklist -from acidslide.inspect_ooxml import SceneObject, extract_deck_graph +from gloss.checklist import load_checklist +from gloss.evaluate import compute_fidelity_score, evaluate_checklist +from gloss.inspect_ooxml import SceneObject, extract_deck_graph BENCHMARK_DIR = Path(__file__).resolve().parents[2] / "benchmark" -PPTX_PATH = BENCHMARK_DIR / "deck" / "gold" / "acidslide-v1-gold.pptx" +PPTX_PATH = BENCHMARK_DIR / "deck" / "gold" / "gloss-v1-gold.pptx" pytestmark = pytest.mark.skipif( not PPTX_PATH.exists(), - reason="canonical AcidSlide v1 gold deck not found", + reason="canonical Gloss v1 gold deck not found", ) @@ -144,7 +144,7 @@ def test_grade_report_structure(self) -> None: assert isinstance(flags, list) # Print summary for inspection - print("\n--- AcidSlide v1 Grade Summary ---") + print("\n--- Gloss v1 Grade Summary ---") print(f"Fidelity: {fidelity:.4f}") print(f"Passed: {passed}/{total}") print(f"Anti-cheat flags: {len(flags)}") diff --git a/acidslide-v1/grader/tests/test_mce.py b/gloss-v1/grader/tests/test_mce.py similarity index 96% rename from acidslide-v1/grader/tests/test_mce.py rename to gloss-v1/grader/tests/test_mce.py index 90c121d..9ae1fbd 100644 --- a/acidslide-v1/grader/tests/test_mce.py +++ b/gloss-v1/grader/tests/test_mce.py @@ -8,8 +8,8 @@ import pytest from lxml import etree -from acidslide.inspect_ooxml import extract_deck_graph -from acidslide.mce import MC_NAMESPACE, MCEProfileError, preprocess_markup_compatibility +from gloss.inspect_ooxml import extract_deck_graph +from gloss.mce import MC_NAMESPACE, MCEProfileError, preprocess_markup_compatibility if TYPE_CHECKING: from pathlib import Path @@ -77,7 +77,7 @@ def test_undeclared_prefix_and_must_understand_fail_closed() -> None: def test_process_content_splices_children_and_preserve_records_evidence() -> None: - extension = "urn:acidslide:unsupported" + extension = "urn:gloss:unsupported" root = etree.fromstring( f''' diff --git a/acidslide-v1/grader/tests/test_models.py b/gloss-v1/grader/tests/test_models.py similarity index 98% rename from acidslide-v1/grader/tests/test_models.py rename to gloss-v1/grader/tests/test_models.py index 0e7638d..b529fa3 100644 --- a/acidslide-v1/grader/tests/test_models.py +++ b/gloss-v1/grader/tests/test_models.py @@ -11,7 +11,7 @@ import jsonschema import rfc8785 -from acidslide.models import ( +from gloss.models import ( DisqualificationState, GoldDuplicateCheck, GradeReport, @@ -41,7 +41,7 @@ def _environment_attestation() -> dict[str, Any]: } return { "schema_version": "1.0", - "attestation_id": "acidslide-environment-attestation-v1", + "attestation_id": "gloss-environment-attestation-v1", "canonicalization": "RFC8785-JCS", "attestation_state": "verified", "attested_at": "2026-07-18T12:00:00Z", @@ -95,7 +95,7 @@ def _environment_attestation() -> dict[str, Any]: "-scale-to-y", "1080", "/work/submission.pdf", - "/work/acidslide-render", + "/work/gloss-render", ], "presentation_size_emu": {"cx": 12192000, "cy": 6858000}, "allowed_page_counts": [5, 12, 20], @@ -143,7 +143,7 @@ def _report() -> GradeReport: f"sha256:{hashlib.sha256(rfc8785.dumps(environment_attestation)).hexdigest()}" ) return GradeReport( - benchmark_version="acidslide-v1.0.0", + benchmark_version="gloss-v1.0.0", grader_version="1.0.0a1", scoring_cohort_id=SHA[0], scoring_manifest_sha256=SHA[1], diff --git a/acidslide-v1/grader/tests/test_mutation_fixtures.py b/gloss-v1/grader/tests/test_mutation_fixtures.py similarity index 97% rename from acidslide-v1/grader/tests/test_mutation_fixtures.py rename to gloss-v1/grader/tests/test_mutation_fixtures.py index 2d97616..2f0f472 100644 --- a/acidslide-v1/grader/tests/test_mutation_fixtures.py +++ b/gloss-v1/grader/tests/test_mutation_fixtures.py @@ -11,16 +11,16 @@ import pytest -from acidslide.affected_slides import ( +from gloss.affected_slides import ( NON_BUNDLED_FONT_SELECTOR, AffectedSlideSelectorError, resolve_named_selector, selector_binding, ) -from acidslide.checklist import ChecklistItem, load_checklist -from acidslide.evaluate import BUNDLED_FONTS, evaluate_checklist -from acidslide.inspect_ooxml import DeckGraph, extract_deck_graph -from acidslide.mutation_fixtures import ( +from gloss.checklist import ChecklistItem, load_checklist +from gloss.evaluate import BUNDLED_FONTS, evaluate_checklist +from gloss.inspect_ooxml import DeckGraph, extract_deck_graph +from gloss.mutation_fixtures import ( build_fixture_index, build_mutation_expectations, execute_fixture_matrix, diff --git a/acidslide-v1/grader/tests/test_package_hash.py b/gloss-v1/grader/tests/test_package_hash.py similarity index 97% rename from acidslide-v1/grader/tests/test_package_hash.py rename to gloss-v1/grader/tests/test_package_hash.py index bfe21f4..9d0d4bc 100644 --- a/acidslide-v1/grader/tests/test_package_hash.py +++ b/gloss-v1/grader/tests/test_package_hash.py @@ -8,7 +8,7 @@ import pytest -from acidslide.package_hash import ( +from gloss.package_hash import ( PackageHashError, PackageHashProfileMismatchError, canonical_package_sha256, @@ -21,7 +21,7 @@ PROFILE = ROOT / "schemas" / "canonical-package-hash-v1.json" MCE_PROFILE = ROOT / "schemas" / "mce-profile-v1.json" ROOT_MAP = ROOT / "schemas" / "schema-root-map-v1.json" -REFERENCE_DECK = ROOT / "benchmark" / "deck" / "gold" / "acidslide-v1-gold.pptx" +REFERENCE_DECK = ROOT / "benchmark" / "deck" / "gold" / "gloss-v1-gold.pptx" def _write_zip(path: Path, parts: dict[str, bytes], *, reverse: bool = False) -> None: diff --git a/acidslide-v1/grader/tests/test_pipeline.py b/gloss-v1/grader/tests/test_pipeline.py similarity index 98% rename from acidslide-v1/grader/tests/test_pipeline.py rename to gloss-v1/grader/tests/test_pipeline.py index 4d1536d..84eac54 100644 --- a/acidslide-v1/grader/tests/test_pipeline.py +++ b/gloss-v1/grader/tests/test_pipeline.py @@ -15,10 +15,10 @@ import rfc8785 from test_models import _environment_attestation -from acidslide import pipeline -from acidslide.checklist import ChecklistItem, Verification -from acidslide.inspect_ooxml import DeckGraph, SceneObject, SlideGraph -from acidslide.models import ( +from gloss import pipeline +from gloss.checklist import ChecklistItem, Verification +from gloss.inspect_ooxml import DeckGraph, SceneObject, SlideGraph +from gloss.models import ( ArtifactReportContext, DisqualificationState, GoldDuplicateCheck, @@ -31,8 +31,8 @@ StableError, VisualComparisonResult, ) -from acidslide.package_hash import canonical_package_identity, sha256_file -from acidslide.provenance import ScoringCohortProvenance, derive_scoring_cohort_id +from gloss.package_hash import canonical_package_identity, sha256_file +from gloss.provenance import ScoringCohortProvenance, derive_scoring_cohort_id ROOT = Path(__file__).resolve().parents[2] PACKAGE_FIXTURE = ROOT / "benchmark" / "fixtures" / "package-hash" / "gold-copy-rejection-v1.json" diff --git a/acidslide-v1/grader/tests/test_provenance.py b/gloss-v1/grader/tests/test_provenance.py similarity index 95% rename from acidslide-v1/grader/tests/test_provenance.py rename to gloss-v1/grader/tests/test_provenance.py index af4afd1..92384e6 100644 --- a/acidslide-v1/grader/tests/test_provenance.py +++ b/gloss-v1/grader/tests/test_provenance.py @@ -17,13 +17,13 @@ from jsonschema import Draft202012Validator from referencing import Registry, Resource -from acidslide.provenance import ( +from gloss.provenance import ( ReleaseProvenanceError, ScoringCohortProvenance, derive_scoring_cohort_id, load_signed_release_provenance, ) -from acidslide.source_tree import build_grader_source_tree_manifest +from gloss.source_tree import build_grader_source_tree_manifest ROOT = Path(__file__).resolve().parents[2] SCHEMAS = ROOT / "schemas" @@ -44,8 +44,8 @@ def _write_release( format=serialization.PublicFormat.Raw, ) source_root = benchmark_dir / "grader-source" - (source_root / "acidslide").mkdir(parents=True) - (source_root / "acidslide" / "__init__.py").write_text( + (source_root / "gloss").mkdir(parents=True) + (source_root / "gloss" / "__init__.py").write_text( '"""Frozen test grader source."""\n', encoding="utf-8" ) source_profile = SCHEMAS / "grader-source-tree-profile-v1.json" @@ -57,7 +57,7 @@ def _write_release( manifest = { "schema_version": "1.0", "release_status": "frozen", - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "artifacts": { "grader_source_tree_sha256": source_manifest_sha256, "grader_source_tree_manifest_sha256": source_manifest_sha256, @@ -79,9 +79,9 @@ def _write_release( minute = (sequence - 1) * 10 unsigned_index = { "schema_version": "1.0", - "release_id": "acidslide-v1.0.0", - "benchmark_version": "acidslide-v1.0.0", - "channel": "acidslide-v1-stable", + "release_id": "gloss-v1.0.0", + "benchmark_version": "gloss-v1.0.0", + "channel": "gloss-v1-stable", "issued_at": f"2026-07-18T12:{minute:02d}:00Z", "effective_at": f"2026-07-18T12:{minute + 5:02d}:00Z", "sequence": sequence, @@ -141,7 +141,7 @@ def _write_indexes(benchmark_dir: Path, indexes: list[dict[str, Any]]) -> None: return chain = { "schema_version": "1.0", - "channel": "acidslide-v1-stable", + "channel": "gloss-v1-stable", "indexes": indexes, } chain_path.write_bytes(rfc8785.dumps(cast("Any", chain))) @@ -179,7 +179,7 @@ def test_manifest_tamper_fails_closed(tmp_path: Path) -> None: { "schema_version": "1.0", "release_status": "frozen", - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "tampered": True, } ) @@ -191,7 +191,7 @@ def test_manifest_tamper_fails_closed(tmp_path: Path) -> None: def test_grader_source_tree_tamper_fails_closed(tmp_path: Path) -> None: _write_release(tmp_path) - (tmp_path / "grader-source" / "acidslide" / "__init__.py").write_text( + (tmp_path / "grader-source" / "gloss" / "__init__.py").write_text( '"""Tampered grader source."""\n', encoding="utf-8" ) @@ -315,7 +315,7 @@ def test_complete_release_chain_verifies_and_persists_highest_head(tmp_path: Pat assert raw_state == rfc8785.dumps(cast("Any", state)) assert state == { "schema_version": "1.0", - "channel": "acidslide-v1-stable", + "channel": "gloss-v1-stable", "trusted_genesis_sha256": genesis_sha256, "sequence": 2, "release_index_sha256": _document_sha256(indexes[1]), @@ -349,8 +349,8 @@ def test_default_acceptance_state_is_durable_state_not_cache( state_home = tmp_path / "state-home" cache_home = tmp_path / "cache-home" _write_release(benchmark_dir) - monkeypatch.delenv("ACIDSLIDE_RELEASE_STATE_PATH", raising=False) - monkeypatch.delenv("ACIDSLIDE_TRUSTED_GENESIS_SHA256", raising=False) + monkeypatch.delenv("GLOSS_RELEASE_STATE_PATH", raising=False) + monkeypatch.delenv("GLOSS_TRUSTED_GENESIS_SHA256", raising=False) monkeypatch.setenv("XDG_STATE_HOME", str(state_home)) monkeypatch.setenv("XDG_CACHE_HOME", str(cache_home)) @@ -359,7 +359,7 @@ def test_default_acceptance_state_is_durable_state_not_cache( verification_time=datetime(2026, 7, 18, 13, 0, tzinfo=UTC), ) - assert (state_home / "acidslide" / "release-head-v1.json").is_file() + assert (state_home / "gloss" / "release-head-v1.json").is_file() assert not cache_home.exists() diff --git a/acidslide-v1/grader/tests/test_quarantine.py b/gloss-v1/grader/tests/test_quarantine.py similarity index 98% rename from acidslide-v1/grader/tests/test_quarantine.py rename to gloss-v1/grader/tests/test_quarantine.py index 591e9da..3af567e 100644 --- a/acidslide-v1/grader/tests/test_quarantine.py +++ b/gloss-v1/grader/tests/test_quarantine.py @@ -4,7 +4,7 @@ import zipfile from pathlib import Path -from acidslide.quarantine import quarantine_check +from gloss.quarantine import quarantine_check def _make_minimal_pptx(path: Path) -> None: diff --git a/acidslide-v1/grader/tests/test_resources.py b/gloss-v1/grader/tests/test_resources.py similarity index 99% rename from acidslide-v1/grader/tests/test_resources.py rename to gloss-v1/grader/tests/test_resources.py index 79bea3c..a413a65 100644 --- a/acidslide-v1/grader/tests/test_resources.py +++ b/gloss-v1/grader/tests/test_resources.py @@ -20,12 +20,12 @@ from lxml import etree from test_models import _environment_attestation -from acidslide import environment -from acidslide import scene_graph as normative_scene_graph -from acidslide.cli import main -from acidslide.environment import environment_hash -from acidslide.resources import BenchmarkDataError, resolve_benchmark_dir, resolve_schema_dir -from acidslide.scene_graph import ( +from gloss import environment +from gloss import scene_graph as normative_scene_graph +from gloss.cli import main +from gloss.environment import environment_hash +from gloss.resources import BenchmarkDataError, resolve_benchmark_dir, resolve_schema_dir +from gloss.scene_graph import ( Relationship, SceneGraphError, canonical_scene_graph_bytes, @@ -245,7 +245,7 @@ def test_explicit_benchmark_path_is_authoritative(tmp_path: Path) -> None: def test_environment_benchmark_override(monkeypatch: pytest.MonkeyPatch, tmp_path: Path) -> None: configured = _benchmark(tmp_path / "benchmark") - monkeypatch.setenv("ACIDSLIDE_BENCHMARK_DIR", str(configured)) + monkeypatch.setenv("GLOSS_BENCHMARK_DIR", str(configured)) assert resolve_benchmark_dir() == configured.resolve() diff --git a/acidslide-v1/grader/tests/test_review_projections.py b/gloss-v1/grader/tests/test_review_projections.py similarity index 93% rename from acidslide-v1/grader/tests/test_review_projections.py rename to gloss-v1/grader/tests/test_review_projections.py index 44cecc6..33734a4 100644 --- a/acidslide-v1/grader/tests/test_review_projections.py +++ b/gloss-v1/grader/tests/test_review_projections.py @@ -5,14 +5,14 @@ from dataclasses import dataclass, field from typing import Any -from acidslide.release_evidence import ( +from gloss.release_evidence import ( assertion_inventory_review_sha256, prompt_oracle_review_sha256, ) -from acidslide.release_evidence import ( +from gloss.release_evidence import ( validate_assertion_inventory_approvals as _validate_assertion_inventory_approvals, ) -from acidslide.release_evidence import ( +from gloss.release_evidence import ( validate_prompt_review_approvals as _validate_prompt_review_approvals, ) @@ -30,8 +30,8 @@ def require(self, condition: bool, message: str) -> None: def _oracle() -> dict[str, Any]: return { "schema_version": "1.0", - "oracle_id": "acidslide-prompt-requirements-v1", - "benchmark_version": "acidslide-v1.0.0", + "oracle_id": "gloss-prompt-requirements-v1", + "benchmark_version": "gloss-v1.0.0", "freeze_status": "frozen", "sources": [{"source_id": "deck-prompt", "sha256": "a" * 64}], "independent_reviews": [], @@ -42,9 +42,9 @@ def _oracle() -> dict[str, Any]: def _inventory() -> dict[str, Any]: return { "schema_version": "1.0", - "inventory_id": "acidslide-scored-assertion-inventory-v1", + "inventory_id": "gloss-scored-assertion-inventory-v1", "lifecycle_state": "frozen", - "benchmark_version": "acidslide-v1.0.0", + "benchmark_version": "gloss-v1.0.0", "prompt_bundle_sha256": f"sha256:{'1' * 64}", "reference_image_bundle_sha256": f"sha256:{'2' * 64}", "asset_manifest_sha256": f"sha256:{'3' * 64}", diff --git a/acidslide-v1/grader/tests/test_schema_validate.py b/gloss-v1/grader/tests/test_schema_validate.py similarity index 96% rename from acidslide-v1/grader/tests/test_schema_validate.py rename to gloss-v1/grader/tests/test_schema_validate.py index e239884..3f579de 100644 --- a/acidslide-v1/grader/tests/test_schema_validate.py +++ b/gloss-v1/grader/tests/test_schema_validate.py @@ -8,7 +8,7 @@ import pytest from lxml import etree -from acidslide.schema_validate import validate_schema +from gloss.schema_validate import validate_schema PRESENTATION_NS = "http://schemas.openxmlformats.org/presentationml/2006/main" PRESENTATION_CONTENT_TYPE = ( @@ -232,7 +232,7 @@ def test_transitional_bullet_size_accepts_decimal_and_percent_forms(tmp_path: Pa wrapper.write_text( f""" + xmlns:t="urn:gloss:test" targetNamespace="urn:gloss:test"> @@ -241,15 +241,13 @@ def test_transitional_bullet_size_accepts_decimal_and_percent_forms(tmp_path: Pa ) schema = etree.XMLSchema(etree.parse(wrapper)) - assert schema.validate(etree.fromstring(b'')) - assert schema.validate(etree.fromstring(b'')) - assert not schema.validate( - etree.fromstring(b'') - ) + assert schema.validate(etree.fromstring(b'')) + assert schema.validate(etree.fromstring(b'')) + assert not schema.validate(etree.fromstring(b'')) def test_reference_deck_validates_all_relevant_xml_parts() -> None: - deck = ROOT / "benchmark" / "deck" / "gold" / "acidslide-v1-gold.pptx" + deck = ROOT / "benchmark" / "deck" / "gold" / "gloss-v1-gold.pptx" with zipfile.ZipFile(deck) as archive: relevant_parts = [ name diff --git a/acidslide-v1/grader/tests/test_source_tree.py b/gloss-v1/grader/tests/test_source_tree.py similarity index 93% rename from acidslide-v1/grader/tests/test_source_tree.py rename to gloss-v1/grader/tests/test_source_tree.py index 03974ed..0816b3e 100644 --- a/acidslide-v1/grader/tests/test_source_tree.py +++ b/gloss-v1/grader/tests/test_source_tree.py @@ -12,7 +12,7 @@ import pytest import rfc8785 -from acidslide.source_tree import ( +from gloss.source_tree import ( GraderSourceTreeError, build_grader_source_tree_manifest, verify_grader_source_tree, @@ -23,8 +23,8 @@ def _source(path: Path) -> Path: - (path / "acidslide").mkdir(parents=True) - (path / "acidslide" / "__init__.py").write_text('"""AcidSlide."""\n', encoding="utf-8") + (path / "gloss").mkdir(parents=True) + (path / "gloss" / "__init__.py").write_text('"""Gloss."""\n', encoding="utf-8") script = path / "hatch_build.py" script.write_text("print('build')\n", encoding="utf-8") script.chmod(0o755) @@ -45,7 +45,7 @@ def test_directory_manifest_is_deterministic_and_verifies(tmp_path: Path) -> Non assert build_grader_source_tree_manifest(source, PROFILE) == first assert [entry["path"] for entry in first["entries"]] == [ - "acidslide/__init__.py", + "gloss/__init__.py", "hatch_build.py", ] assert first["entries"][1]["executable"] is True @@ -139,7 +139,7 @@ def test_release_tar_reconstructs_the_same_manifest(tmp_path: Path) -> None: manifest_path, _ = _manifest(source, tmp_path / "manifest.json") archive = tmp_path / "grader-source-tree.tar" with tarfile.open(archive, "w") as package: - package.add(source, arcname="acidslide-v1/grader", recursive=True) + package.add(source, arcname="gloss-v1/grader", recursive=True) identity = verify_grader_source_tree(archive, manifest_path, PROFILE) @@ -152,11 +152,11 @@ def test_release_tar_unsafe_or_extra_members_fail_closed(tmp_path: Path, kind: s manifest_path, _ = _manifest(source, tmp_path / "manifest.json") archive = tmp_path / "grader-source-tree.tar" with tarfile.open(archive, "w") as package: - package.add(source, arcname="acidslide-v1/grader", recursive=True) + package.add(source, arcname="gloss-v1/grader", recursive=True) member = tarfile.TarInfo( "outside.txt" if kind == "outside" - else f"acidslide-v1/grader/{'link.py' if kind == 'link' else 'extra.py'}" + else f"gloss-v1/grader/{'link.py' if kind == 'link' else 'extra.py'}" ) if kind == "link": member.type = tarfile.SYMTYPE diff --git a/acidslide-v1/grader/uv.lock b/gloss-v1/grader/uv.lock similarity index 99% rename from acidslide-v1/grader/uv.lock rename to gloss-v1/grader/uv.lock index f808547..636bae4 100644 --- a/acidslide-v1/grader/uv.lock +++ b/gloss-v1/grader/uv.lock @@ -3,7 +3,7 @@ revision = 3 requires-python = ">=3.12" [[package]] -name = "acidslide" +name = "gloss" version = "1.0.0a1" source = { editable = "." } dependencies = [ diff --git a/acidslide-v1/schemas/baseline-evidence.schema.json b/gloss-v1/schemas/baseline-evidence.schema.json similarity index 95% rename from acidslide-v1/schemas/baseline-evidence.schema.json rename to gloss-v1/schemas/baseline-evidence.schema.json index 9185c99..1ef068c 100644 --- a/acidslide-v1/schemas/baseline-evidence.schema.json +++ b/gloss-v1/schemas/baseline-evidence.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/baseline-evidence.schema.json", - "title": "AcidSlide Descriptive Baseline Evidence", + "$id": "https://gloss.dev/schemas/baseline-evidence.schema.json", + "title": "Gloss Descriptive Baseline Evidence", "type": "object", "additionalProperties": false, "required": [ @@ -27,7 +27,7 @@ "schema_version": { "const": "1.0" }, "evidence_id": { "type": "string", "pattern": "^baseline\\.[a-z0-9][a-z0-9._-]{2,127}$" }, "baseline_kind": { "enum": ["human_expert", "programmatic_copy", "naive_llm"] }, - "benchmark_version": { "const": "acidslide-v1.0.0" }, + "benchmark_version": { "const": "gloss-v1.0.0" }, "official_inputs": { "type": "object", "additionalProperties": false, diff --git a/acidslide-v1/schemas/canonical-package-hash-profile.schema.json b/gloss-v1/schemas/canonical-package-hash-profile.schema.json similarity index 94% rename from acidslide-v1/schemas/canonical-package-hash-profile.schema.json rename to gloss-v1/schemas/canonical-package-hash-profile.schema.json index 8f0560c..7bec5d6 100644 --- a/acidslide-v1/schemas/canonical-package-hash-profile.schema.json +++ b/gloss-v1/schemas/canonical-package-hash-profile.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/canonical-package-hash-profile.schema.json", - "title": "AcidSlide Canonical Package Hash Profile", + "$id": "https://gloss.dev/schemas/canonical-package-hash-profile.schema.json", + "title": "Gloss Canonical Package Hash Profile", "type": "object", "additionalProperties": false, "required": [ @@ -19,14 +19,14 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "profile_id": { "const": "acidslide-canonical-package-hash-v1" }, + "profile_id": { "const": "gloss-canonical-package-hash-v1" }, "digest": { "const": "sha256" }, "framing": { "type": "object", "additionalProperties": false, "required": ["domain_separator_utf8", "name_length", "content_length", "integer_byte_order"], "properties": { - "domain_separator_utf8": { "const": "AcidSlide canonical package hash v1\u0000" }, + "domain_separator_utf8": { "const": "Gloss canonical package hash v1\u0000" }, "name_length": { "const": "uint32" }, "content_length": { "const": "uint64" }, "integer_byte_order": { "const": "big" } diff --git a/acidslide-v1/schemas/canonical-package-hash-v1.json b/gloss-v1/schemas/canonical-package-hash-v1.json similarity index 96% rename from acidslide-v1/schemas/canonical-package-hash-v1.json rename to gloss-v1/schemas/canonical-package-hash-v1.json index 486a752..bee0ea5 100644 --- a/acidslide-v1/schemas/canonical-package-hash-v1.json +++ b/gloss-v1/schemas/canonical-package-hash-v1.json @@ -1,9 +1,9 @@ { "schema_version": "1.0", - "profile_id": "acidslide-canonical-package-hash-v1", + "profile_id": "gloss-canonical-package-hash-v1", "digest": "sha256", "framing": { - "domain_separator_utf8": "AcidSlide canonical package hash v1\u0000", + "domain_separator_utf8": "Gloss canonical package hash v1\u0000", "name_length": "uint32", "content_length": "uint64", "integer_byte_order": "big" diff --git a/acidslide-v1/schemas/checklist-item.schema.json b/gloss-v1/schemas/checklist-item.schema.json similarity index 97% rename from acidslide-v1/schemas/checklist-item.schema.json rename to gloss-v1/schemas/checklist-item.schema.json index 7321107..8437351 100644 --- a/acidslide-v1/schemas/checklist-item.schema.json +++ b/gloss-v1/schemas/checklist-item.schema.json @@ -1,8 +1,8 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/checklist-item.schema.json", - "title": "AcidSlide Checklist Item", - "description": "Fail-closed contract for one candidate or frozen AcidSlide checklist item. Pending provenance or evidence is explicit and is not release evidence.", + "$id": "https://gloss.dev/schemas/checklist-item.schema.json", + "title": "Gloss Checklist Item", + "description": "Fail-closed contract for one candidate or frozen Gloss checklist item. Pending provenance or evidence is explicit and is not release evidence.", "type": "object", "additionalProperties": false, "required": [ diff --git a/acidslide-v1/schemas/control-handoff.schema.json b/gloss-v1/schemas/control-handoff.schema.json similarity index 97% rename from acidslide-v1/schemas/control-handoff.schema.json rename to gloss-v1/schemas/control-handoff.schema.json index 9625442..8a9c120 100644 --- a/acidslide-v1/schemas/control-handoff.schema.json +++ b/gloss-v1/schemas/control-handoff.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/control-handoff.schema.json", - "title": "AcidSlide Signed Control Authorization Envelope", + "$id": "https://gloss.dev/schemas/control-handoff.schema.json", + "title": "Gloss Signed Control Authorization Envelope", "description": "Reference and baseline controls require this single-use purpose-scoped maintainer authorization. The Ed25519 signature covers RFC 8785 canonical JSON with signature omitted.", "type": "object", "additionalProperties": false, diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/dml-chart.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/dml-chart.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/dml-chart.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/dml-chart.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/dml-chartDrawing.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/dml-chartDrawing.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/dml-chartDrawing.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/dml-chartDrawing.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/dml-diagram.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/dml-diagram.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/dml-diagram.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/dml-diagram.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/dml-lockedCanvas.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/dml-lockedCanvas.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/dml-lockedCanvas.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/dml-lockedCanvas.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/dml-main.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/dml-main.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/dml-main.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/dml-main.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/dml-picture.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/dml-picture.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/dml-picture.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/dml-picture.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/dml-spreadsheetDrawing.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/dml-spreadsheetDrawing.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/dml-spreadsheetDrawing.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/dml-spreadsheetDrawing.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/dml-wordprocessingDrawing.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/dml-wordprocessingDrawing.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/dml-wordprocessingDrawing.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/dml-wordprocessingDrawing.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/ms-odrawxml-chartstyle-2012.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/ms-odrawxml-chartstyle-2012.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/ms-odrawxml-chartstyle-2012.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/ms-odrawxml-chartstyle-2012.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/pml.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/pml.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/pml.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/pml.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-additionalCharacteristics.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-additionalCharacteristics.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-additionalCharacteristics.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-additionalCharacteristics.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-bibliography.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-bibliography.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-bibliography.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-bibliography.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-commonSimpleTypes.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-commonSimpleTypes.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-commonSimpleTypes.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-commonSimpleTypes.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-customXmlDataProperties.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-customXmlDataProperties.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-customXmlDataProperties.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-customXmlDataProperties.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-customXmlSchemaProperties.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-customXmlSchemaProperties.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-customXmlSchemaProperties.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-customXmlSchemaProperties.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesCustom.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesCustom.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesCustom.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesCustom.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesExtended.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesExtended.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesExtended.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesExtended.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesVariantTypes.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesVariantTypes.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesVariantTypes.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-documentPropertiesVariantTypes.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-math.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-math.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-math.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-math.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/shared-relationshipReference.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/shared-relationshipReference.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/shared-relationshipReference.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/shared-relationshipReference.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/sml.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/sml.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/sml.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/sml.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/vml-main.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/vml-main.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/vml-main.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/vml-main.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/vml-officeDrawing.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/vml-officeDrawing.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/vml-officeDrawing.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/vml-officeDrawing.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/vml-presentationDrawing.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/vml-presentationDrawing.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/vml-presentationDrawing.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/vml-presentationDrawing.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/vml-spreadsheetDrawing.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/vml-spreadsheetDrawing.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/vml-spreadsheetDrawing.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/vml-spreadsheetDrawing.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/vml-wordprocessingDrawing.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/vml-wordprocessingDrawing.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/vml-wordprocessingDrawing.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/vml-wordprocessingDrawing.xsd diff --git a/acidslide-v1/schemas/ecma-376/xsd-transitional/wml.xsd b/gloss-v1/schemas/ecma-376/xsd-transitional/wml.xsd similarity index 100% rename from acidslide-v1/schemas/ecma-376/xsd-transitional/wml.xsd rename to gloss-v1/schemas/ecma-376/xsd-transitional/wml.xsd diff --git a/acidslide-v1/schemas/environment-attestation.schema.json b/gloss-v1/schemas/environment-attestation.schema.json similarity index 97% rename from acidslide-v1/schemas/environment-attestation.schema.json rename to gloss-v1/schemas/environment-attestation.schema.json index 07fc9ae..0393806 100644 --- a/acidslide-v1/schemas/environment-attestation.schema.json +++ b/gloss-v1/schemas/environment-attestation.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/environment-attestation.schema.json", - "title": "AcidSlide Frozen Environment Attestation", + "$id": "https://gloss.dev/schemas/environment-attestation.schema.json", + "title": "Gloss Frozen Environment Attestation", "description": "RFC 8785-canonicalized, self-hash-free payload used to derive environment_attestation_sha256. The digest is SHA-256 over the exact JCS bytes of a schema-valid instance.", "type": "object", "additionalProperties": false, @@ -26,7 +26,7 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "attestation_id": { "const": "acidslide-environment-attestation-v1" }, + "attestation_id": { "const": "gloss-environment-attestation-v1" }, "canonicalization": { "const": "RFC8785-JCS" }, "attestation_state": { "const": "verified" }, "attested_at": { "type": "string", "format": "date-time" }, @@ -158,7 +158,7 @@ "const": ["libreoffice", "--headless", "-env:UserInstallation=file://", "--convert-to", "pdf", "--outdir", "/work", "/input/submission.pptx"] }, "pdftoppm_command": { - "const": ["pdftoppm", "-png", "-scale-to-x", "1920", "-scale-to-y", "1080", "/work/submission.pdf", "/work/acidslide-render"] + "const": ["pdftoppm", "-png", "-scale-to-x", "1920", "-scale-to-y", "1080", "/work/submission.pdf", "/work/gloss-render"] }, "presentation_size_emu": { "const": { "cx": 12192000, "cy": 6858000 } }, "allowed_page_counts": { "const": [5, 12, 20] }, diff --git a/acidslide-v1/schemas/export-determinism-evidence.schema.json b/gloss-v1/schemas/export-determinism-evidence.schema.json similarity index 94% rename from acidslide-v1/schemas/export-determinism-evidence.schema.json rename to gloss-v1/schemas/export-determinism-evidence.schema.json index b440f21..f21d8bf 100644 --- a/acidslide-v1/schemas/export-determinism-evidence.schema.json +++ b/gloss-v1/schemas/export-determinism-evidence.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/export-determinism-evidence.schema.json", - "title": "AcidSlide 100-Run Gold Export Determinism Evidence", + "$id": "https://gloss.dev/schemas/export-determinism-evidence.schema.json", + "title": "Gloss 100-Run Gold Export Determinism Evidence", "description": "RFC 8785-canonicalized release evidence for all 4,950 unordered pairs of 100 canonical 20-page gold exports. The evidence contains no self-hash; the signed scoring manifest binds its JCS SHA-256.", "type": "object", "additionalProperties": false, @@ -25,8 +25,8 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "evidence_id": { "const": "acidslide-export-determinism-evidence-v1" }, - "benchmark_version": { "const": "acidslide-v1.0.0" }, + "evidence_id": { "const": "gloss-export-determinism-evidence-v1" }, + "benchmark_version": { "const": "gloss-v1.0.0" }, "canonicalization": { "const": "RFC8785-JCS" }, "measured_at": { "type": "string", "format": "date-time" }, "bindings": { diff --git a/acidslide-v1/schemas/export-profile-v1.json b/gloss-v1/schemas/export-profile-v1.json similarity index 96% rename from acidslide-v1/schemas/export-profile-v1.json rename to gloss-v1/schemas/export-profile-v1.json index cfadcfd..bc305da 100644 --- a/acidslide-v1/schemas/export-profile-v1.json +++ b/gloss-v1/schemas/export-profile-v1.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "profile_id": "acidslide-export-profile-v1", + "profile_id": "gloss-export-profile-v1", "platform": "linux/amd64", "pipeline": "pptx_to_pdf_to_poppler_png", "execution_wrapper": "libfaketime_preload_all_subprocesses", diff --git a/acidslide-v1/schemas/export-profile.schema.json b/gloss-v1/schemas/export-profile.schema.json similarity index 92% rename from acidslide-v1/schemas/export-profile.schema.json rename to gloss-v1/schemas/export-profile.schema.json index c559f04..b548b76 100644 --- a/acidslide-v1/schemas/export-profile.schema.json +++ b/gloss-v1/schemas/export-profile.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/export-profile.schema.json", - "title": "AcidSlide v1 PPTX to PDF Export Profile", + "$id": "https://gloss.dev/schemas/export-profile.schema.json", + "title": "Gloss v1 PPTX to PDF Export Profile", "type": "object", "additionalProperties": false, "required": [ @@ -21,7 +21,7 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "profile_id": { "const": "acidslide-export-profile-v1" }, + "profile_id": { "const": "gloss-export-profile-v1" }, "platform": { "const": "linux/amd64" }, "pipeline": { "const": "pptx_to_pdf_to_poppler_png" }, "execution_wrapper": { "const": "libfaketime_preload_all_subprocesses" }, diff --git a/acidslide-v1/schemas/generation-profile.schema.json b/gloss-v1/schemas/generation-profile.schema.json similarity index 94% rename from acidslide-v1/schemas/generation-profile.schema.json rename to gloss-v1/schemas/generation-profile.schema.json index 5c5474d..b5c6a7f 100644 --- a/acidslide-v1/schemas/generation-profile.schema.json +++ b/gloss-v1/schemas/generation-profile.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/generation-profile.schema.json", - "title": "AcidSlide Immutable Generation Profile", + "$id": "https://gloss.dev/schemas/generation-profile.schema.json", + "title": "Gloss Immutable Generation Profile", "description": "Self-hash-free RFC 8785 payload used to derive generation_profile_sha256. It deliberately contains no artifact identity, result, run seed, or timestamp.", "type": "object", "additionalProperties": false, @@ -17,7 +17,7 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "profile_id": { "const": "acidslide-generation-profile-v1" }, + "profile_id": { "const": "gloss-generation-profile-v1" }, "canonicalization": { "const": "RFC8785-JCS" }, "generator": { "type": "object", diff --git a/acidslide-v1/schemas/gold-evidence.schema.json b/gloss-v1/schemas/gold-evidence.schema.json similarity index 97% rename from acidslide-v1/schemas/gold-evidence.schema.json rename to gloss-v1/schemas/gold-evidence.schema.json index eeb485b..7e4784c 100644 --- a/acidslide-v1/schemas/gold-evidence.schema.json +++ b/gloss-v1/schemas/gold-evidence.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/gold-evidence.schema.json", - "title": "AcidSlide Single Gold Identity Evidence", + "$id": "https://gloss.dev/schemas/gold-evidence.schema.json", + "title": "Gloss Single Gold Identity Evidence", "type": "object", "additionalProperties": false, "required": [ @@ -22,8 +22,8 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "evidence_id": { "const": "acidslide-gold-evidence-v1" }, - "benchmark_version": { "const": "acidslide-v1.0.0" }, + "evidence_id": { "const": "gloss-gold-evidence-v1" }, + "benchmark_version": { "const": "gloss-v1.0.0" }, "scoring_manifest_sha256": { "$ref": "#/$defs/hash" }, "release_index_sha256": { "$ref": "#/$defs/hash" }, "original_authored_gold": { "$ref": "#/$defs/object_identity" }, diff --git a/acidslide-v1/schemas/grader-source-tree-manifest.schema.json b/gloss-v1/schemas/grader-source-tree-manifest.schema.json similarity index 83% rename from acidslide-v1/schemas/grader-source-tree-manifest.schema.json rename to gloss-v1/schemas/grader-source-tree-manifest.schema.json index 7f5c052..5ebcdd1 100644 --- a/acidslide-v1/schemas/grader-source-tree-manifest.schema.json +++ b/gloss-v1/schemas/grader-source-tree-manifest.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/grader-source-tree-manifest.schema.json", - "title": "AcidSlide Grader Source Tree Release Manifest", + "$id": "https://gloss.dev/schemas/grader-source-tree-manifest.schema.json", + "title": "Gloss Grader Source Tree Release Manifest", "description": "A release instance enumerates the complete source tree. grader_source_tree_sha256 is SHA-256 over RFC 8785 canonical JSON of this self-hash-free object.", "type": "object", "additionalProperties": false, @@ -14,9 +14,9 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "manifest_id": { "const": "acidslide-grader-source-tree-manifest-v1" }, + "manifest_id": { "const": "gloss-grader-source-tree-manifest-v1" }, "source_tree_profile_sha256": { "$ref": "#/$defs/prefixed_sha256" }, - "root": { "const": "acidslide-v1/grader" }, + "root": { "const": "gloss-v1/grader" }, "entries": { "type": "array", "minItems": 1, diff --git a/acidslide-v1/schemas/grader-source-tree-profile-v1.json b/gloss-v1/schemas/grader-source-tree-profile-v1.json similarity index 92% rename from acidslide-v1/schemas/grader-source-tree-profile-v1.json rename to gloss-v1/schemas/grader-source-tree-profile-v1.json index 804a432..d31b84a 100644 --- a/acidslide-v1/schemas/grader-source-tree-profile-v1.json +++ b/gloss-v1/schemas/grader-source-tree-profile-v1.json @@ -1,7 +1,7 @@ { "schema_version": "1.0", - "profile_id": "acidslide-grader-source-tree-v1", - "root": "acidslide-v1/grader", + "profile_id": "gloss-grader-source-tree-v1", + "root": "gloss-v1/grader", "manifest_canonicalization": "RFC8785-JCS", "manifest_digest": "SHA-256-lowercase-hex-prefixed", "path_normalization": { diff --git a/acidslide-v1/schemas/grader-source-tree-profile.schema.json b/gloss-v1/schemas/grader-source-tree-profile.schema.json similarity index 90% rename from acidslide-v1/schemas/grader-source-tree-profile.schema.json rename to gloss-v1/schemas/grader-source-tree-profile.schema.json index 54f9b96..1f58d9f 100644 --- a/acidslide-v1/schemas/grader-source-tree-profile.schema.json +++ b/gloss-v1/schemas/grader-source-tree-profile.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/grader-source-tree-profile.schema.json", - "title": "AcidSlide Grader Source Tree Construction Profile", + "$id": "https://gloss.dev/schemas/grader-source-tree-profile.schema.json", + "title": "Gloss Grader Source Tree Construction Profile", "description": "Algorithm/configuration only. A release inventory is a separate grader-source-tree-manifest.schema.json instance.", "type": "object", "additionalProperties": false, @@ -20,8 +20,8 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "profile_id": { "const": "acidslide-grader-source-tree-v1" }, - "root": { "const": "acidslide-v1/grader" }, + "profile_id": { "const": "gloss-grader-source-tree-v1" }, + "root": { "const": "gloss-v1/grader" }, "manifest_canonicalization": { "const": "RFC8785-JCS" }, "manifest_digest": { "const": "SHA-256-lowercase-hex-prefixed" }, "path_normalization": { diff --git a/acidslide-v1/schemas/mce-profile-v1.json b/gloss-v1/schemas/mce-profile-v1.json similarity index 96% rename from acidslide-v1/schemas/mce-profile-v1.json rename to gloss-v1/schemas/mce-profile-v1.json index 7fc1e77..b5c2d95 100644 --- a/acidslide-v1/schemas/mce-profile-v1.json +++ b/gloss-v1/schemas/mce-profile-v1.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "profile_id": "acidslide-mce-profile-v1", + "profile_id": "gloss-mce-profile-v1", "markup_compatibility_namespace": "http://schemas.openxmlformats.org/markup-compatibility/2006", "understood_namespaces": [ "http://schemas.openxmlformats.org/drawingml/2006/chart", diff --git a/acidslide-v1/schemas/mce-profile.schema.json b/gloss-v1/schemas/mce-profile.schema.json similarity index 90% rename from acidslide-v1/schemas/mce-profile.schema.json rename to gloss-v1/schemas/mce-profile.schema.json index 9697eb7..74a2193 100644 --- a/acidslide-v1/schemas/mce-profile.schema.json +++ b/gloss-v1/schemas/mce-profile.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/mce-profile.schema.json", - "title": "AcidSlide MCE Consumer Profile", + "$id": "https://gloss.dev/schemas/mce-profile.schema.json", + "title": "Gloss MCE Consumer Profile", "type": "object", "additionalProperties": false, "required": [ @@ -13,7 +13,7 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "profile_id": { "const": "acidslide-mce-profile-v1" }, + "profile_id": { "const": "gloss-mce-profile-v1" }, "markup_compatibility_namespace": { "const": "http://schemas.openxmlformats.org/markup-compatibility/2006" }, diff --git a/acidslide-v1/schemas/package-hash-fixture.schema.json b/gloss-v1/schemas/package-hash-fixture.schema.json similarity index 90% rename from acidslide-v1/schemas/package-hash-fixture.schema.json rename to gloss-v1/schemas/package-hash-fixture.schema.json index 49e28d8..fa078cc 100644 --- a/acidslide-v1/schemas/package-hash-fixture.schema.json +++ b/gloss-v1/schemas/package-hash-fixture.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/package-hash-fixture.schema.json", - "title": "AcidSlide Canonical Package Hash Fixture", + "$id": "https://gloss.dev/schemas/package-hash-fixture.schema.json", + "title": "Gloss Canonical Package Hash Fixture", "type": "object", "additionalProperties": false, "required": ["schema_version", "fixture_id", "gold_parts", "cases", "expected_canonical_sha256"], diff --git a/acidslide-v1/schemas/png-profile-v1.json b/gloss-v1/schemas/png-profile-v1.json similarity index 86% rename from acidslide-v1/schemas/png-profile-v1.json rename to gloss-v1/schemas/png-profile-v1.json index 0cb6766..139bdab 100644 --- a/acidslide-v1/schemas/png-profile-v1.json +++ b/gloss-v1/schemas/png-profile-v1.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "profile_id": "acidslide-png-profile-v1", + "profile_id": "gloss-png-profile-v1", "rasterizer": "poppler-pdftoppm", "pdftoppm_command": [ "pdftoppm", @@ -10,7 +10,7 @@ "-scale-to-y", "1080", "/work/submission.pdf", - "/work/acidslide-render" + "/work/gloss-render" ], "width_px": 1920, "height_px": 1080, diff --git a/acidslide-v1/schemas/png-profile.schema.json b/gloss-v1/schemas/png-profile.schema.json similarity index 82% rename from acidslide-v1/schemas/png-profile.schema.json rename to gloss-v1/schemas/png-profile.schema.json index de467f4..83dda50 100644 --- a/acidslide-v1/schemas/png-profile.schema.json +++ b/gloss-v1/schemas/png-profile.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/png-profile.schema.json", - "title": "AcidSlide v1 PDF to PNG Profile", + "$id": "https://gloss.dev/schemas/png-profile.schema.json", + "title": "Gloss v1 PDF to PNG Profile", "type": "object", "additionalProperties": false, "required": [ @@ -17,7 +17,7 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "profile_id": { "const": "acidslide-png-profile-v1" }, + "profile_id": { "const": "gloss-png-profile-v1" }, "rasterizer": { "const": "poppler-pdftoppm" }, "pdftoppm_command": { "const": [ @@ -28,7 +28,7 @@ "-scale-to-y", "1080", "/work/submission.pdf", - "/work/acidslide-render" + "/work/gloss-render" ] }, "width_px": { "const": 1920 }, diff --git a/acidslide-v1/schemas/prompt-requirements.schema.json b/gloss-v1/schemas/prompt-requirements.schema.json similarity index 96% rename from acidslide-v1/schemas/prompt-requirements.schema.json rename to gloss-v1/schemas/prompt-requirements.schema.json index 54a7a0f..c36ac81 100644 --- a/acidslide-v1/schemas/prompt-requirements.schema.json +++ b/gloss-v1/schemas/prompt-requirements.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/prompt-requirements.schema.json", - "title": "AcidSlide Prompt-Derived Requirements Oracle", + "$id": "https://gloss.dev/schemas/prompt-requirements.schema.json", + "title": "Gloss Prompt-Derived Requirements Oracle", "type": "object", "additionalProperties": false, "required": [ @@ -15,8 +15,8 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "oracle_id": { "const": "acidslide-prompt-requirements-v1" }, - "benchmark_version": { "const": "acidslide-v1.0.0" }, + "oracle_id": { "const": "gloss-prompt-requirements-v1" }, + "benchmark_version": { "const": "gloss-v1.0.0" }, "freeze_status": { "enum": ["candidate_pending_independent_review", "frozen"] }, diff --git a/acidslide-v1/schemas/release-index-chain.schema.json b/gloss-v1/schemas/release-index-chain.schema.json similarity index 65% rename from acidslide-v1/schemas/release-index-chain.schema.json rename to gloss-v1/schemas/release-index-chain.schema.json index c9fc951..cde821e 100644 --- a/acidslide-v1/schemas/release-index-chain.schema.json +++ b/gloss-v1/schemas/release-index-chain.schema.json @@ -1,18 +1,18 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/release-index-chain.schema.json", - "title": "AcidSlide Complete Signed Release Index Chain", + "$id": "https://gloss.dev/schemas/release-index-chain.schema.json", + "title": "Gloss Complete Signed Release Index Chain", "$comment": "The runtime additionally verifies signatures, exact sequence continuity, predecessor JCS hashes, nondecreasing issue/effective times, the configured genesis, and the persisted highest accepted head.", "type": "object", "additionalProperties": false, "required": ["schema_version", "channel", "indexes"], "properties": { "schema_version": { "const": "1.0" }, - "channel": { "const": "acidslide-v1-stable" }, + "channel": { "const": "gloss-v1-stable" }, "indexes": { "type": "array", "minItems": 1, - "items": { "$ref": "https://acidslide.dev/schemas/release-index.schema.json" } + "items": { "$ref": "https://gloss.dev/schemas/release-index.schema.json" } } } } diff --git a/acidslide-v1/schemas/release-index.schema.json b/gloss-v1/schemas/release-index.schema.json similarity index 91% rename from acidslide-v1/schemas/release-index.schema.json rename to gloss-v1/schemas/release-index.schema.json index 8a77188..a3a66ee 100644 --- a/acidslide-v1/schemas/release-index.schema.json +++ b/gloss-v1/schemas/release-index.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/release-index.schema.json", - "title": "AcidSlide Signed Release Index", + "$id": "https://gloss.dev/schemas/release-index.schema.json", + "title": "Gloss Signed Release Index", "$comment": "The chain validator additionally requires effective_at >= issued_at, exact +1 sequence continuity, previous hash equality, forward-only state, and persistent highest-valid-chain-head acceptance.", "type": "object", "additionalProperties": false, @@ -23,9 +23,9 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "release_id": { "const": "acidslide-v1.0.0" }, - "benchmark_version": { "const": "acidslide-v1.0.0" }, - "channel": { "const": "acidslide-v1-stable" }, + "release_id": { "const": "gloss-v1.0.0" }, + "benchmark_version": { "const": "gloss-v1.0.0" }, + "channel": { "const": "gloss-v1-stable" }, "issued_at": { "type": "string", "format": "date-time" }, "effective_at": { "type": "string", "format": "date-time" }, "sequence": { "type": "integer", "minimum": 1 }, diff --git a/acidslide-v1/schemas/release-keys.schema.json b/gloss-v1/schemas/release-keys.schema.json similarity index 90% rename from acidslide-v1/schemas/release-keys.schema.json rename to gloss-v1/schemas/release-keys.schema.json index 34cdcde..d872a2c 100644 --- a/acidslide-v1/schemas/release-keys.schema.json +++ b/gloss-v1/schemas/release-keys.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/release-keys.schema.json", - "title": "AcidSlide Authorized Release Keys", + "$id": "https://gloss.dev/schemas/release-keys.schema.json", + "title": "Gloss Authorized Release Keys", "type": "object", "additionalProperties": false, "required": ["schema_version", "keys"], diff --git a/acidslide-v1/schemas/report-semantic-projection.schema.json b/gloss-v1/schemas/report-semantic-projection.schema.json similarity index 98% rename from acidslide-v1/schemas/report-semantic-projection.schema.json rename to gloss-v1/schemas/report-semantic-projection.schema.json index b2c8e75..260f08d 100644 --- a/acidslide-v1/schemas/report-semantic-projection.schema.json +++ b/gloss-v1/schemas/report-semantic-projection.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/report-semantic-projection.schema.json", - "title": "AcidSlide Score-Semantic Report Projection", + "$id": "https://gloss.dev/schemas/report-semantic-projection.schema.json", + "title": "Gloss Score-Semantic Report Projection", "description": "The only cross-build score equality surface. Unknown, diagnostic, identity, timing, provenance, environment, seed, attestation, and hash fields are rejected.", "type": "object", "additionalProperties": false, diff --git a/acidslide-v1/schemas/report.schema.json b/gloss-v1/schemas/report.schema.json similarity index 99% rename from acidslide-v1/schemas/report.schema.json rename to gloss-v1/schemas/report.schema.json index 6c39e4e..9d3d688 100644 --- a/acidslide-v1/schemas/report.schema.json +++ b/gloss-v1/schemas/report.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/report.schema.json", - "title": "AcidSlide Grade Report", + "$id": "https://gloss.dev/schemas/report.schema.json", + "title": "Gloss Grade Report", "description": "Fail-closed full grading/diagnostic report. Equality of campaign_contribution and fidelity_score for eligible reports, array sort order, and cross-field hash recomputation are mandatory runtime checks in addition to this schema.", "type": "object", "additionalProperties": false, @@ -74,7 +74,7 @@ "verification_errors" ], "properties": { - "benchmark_version": { "type": "string", "pattern": "^acidslide-v[0-9]+\\.[0-9]+\\.[0-9]+$" }, + "benchmark_version": { "type": "string", "pattern": "^gloss-v[0-9]+\\.[0-9]+\\.[0-9]+$" }, "grader_version": { "type": "string", "minLength": 1 }, "run_kind": { "enum": ["submission", "reference_control", "baseline_control"] }, "grading_mode": { "enum": ["local", "hosted"] }, diff --git a/acidslide-v1/schemas/runtime-freeze-input.schema.json b/gloss-v1/schemas/runtime-freeze-input.schema.json similarity index 92% rename from acidslide-v1/schemas/runtime-freeze-input.schema.json rename to gloss-v1/schemas/runtime-freeze-input.schema.json index 04e85ba..21fffea 100644 --- a/acidslide-v1/schemas/runtime-freeze-input.schema.json +++ b/gloss-v1/schemas/runtime-freeze-input.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/runtime-freeze-input.schema.json", - "title": "AcidSlide Runtime Freeze Input", + "$id": "https://gloss.dev/schemas/runtime-freeze-input.schema.json", + "title": "Gloss Runtime Freeze Input", "type": "object", "additionalProperties": false, "required": [ diff --git a/acidslide-v1/schemas/scene-graph-profile-v1.json b/gloss-v1/schemas/scene-graph-profile-v1.json similarity index 97% rename from acidslide-v1/schemas/scene-graph-profile-v1.json rename to gloss-v1/schemas/scene-graph-profile-v1.json index 879ef3a..18f0b75 100644 --- a/acidslide-v1/schemas/scene-graph-profile-v1.json +++ b/gloss-v1/schemas/scene-graph-profile-v1.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "profile_id": "acidslide-scene-graph-profile-v1", + "profile_id": "gloss-scene-graph-profile-v1", "input_contract": { "package_state": "mce-resolved", "allowed_slide_counts": [5, 12, 20], diff --git a/acidslide-v1/schemas/scene-graph-profile.schema.json b/gloss-v1/schemas/scene-graph-profile.schema.json similarity index 94% rename from acidslide-v1/schemas/scene-graph-profile.schema.json rename to gloss-v1/schemas/scene-graph-profile.schema.json index 5092c9d..3af59f3 100644 --- a/acidslide-v1/schemas/scene-graph-profile.schema.json +++ b/gloss-v1/schemas/scene-graph-profile.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/scene-graph-profile.schema.json", - "title": "AcidSlide Normalized Scene Graph Extraction Profile", + "$id": "https://gloss.dev/schemas/scene-graph-profile.schema.json", + "title": "Gloss Normalized Scene Graph Extraction Profile", "type": "object", "additionalProperties": false, "required": [ @@ -17,7 +17,7 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "profile_id": { "const": "acidslide-scene-graph-profile-v1" }, + "profile_id": { "const": "gloss-scene-graph-profile-v1" }, "input_contract": { "type": "object", "additionalProperties": false, diff --git a/acidslide-v1/schemas/scene-graph.schema.json b/gloss-v1/schemas/scene-graph.schema.json similarity index 98% rename from acidslide-v1/schemas/scene-graph.schema.json rename to gloss-v1/schemas/scene-graph.schema.json index c8b63b2..316387b 100644 --- a/acidslide-v1/schemas/scene-graph.schema.json +++ b/gloss-v1/schemas/scene-graph.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/scene-graph.schema.json", - "title": "AcidSlide Normalized Presentation Scene Graph", + "$id": "https://gloss.dev/schemas/scene-graph.schema.json", + "title": "Gloss Normalized Presentation Scene Graph", "description": "Deterministic structural extraction from one MCE-resolved package. It is evidence/control data and never an independent scored-requirement source.", "type": "object", "additionalProperties": false, diff --git a/acidslide-v1/schemas/schema-root-map-v1.json b/gloss-v1/schemas/schema-root-map-v1.json similarity index 98% rename from acidslide-v1/schemas/schema-root-map-v1.json rename to gloss-v1/schemas/schema-root-map-v1.json index c5f7205..ad0adcd 100644 --- a/acidslide-v1/schemas/schema-root-map-v1.json +++ b/gloss-v1/schemas/schema-root-map-v1.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "mapping_id": "acidslide-schema-root-map-v1", + "mapping_id": "gloss-schema-root-map-v1", "relevant_part_globs": ["ppt/**/*.xml", "ppt/*.xml"], "excluded_part_globs": ["ppt/**/_rels/*.rels"], "entries": [ diff --git a/acidslide-v1/schemas/schema-root-map.schema.json b/gloss-v1/schemas/schema-root-map.schema.json similarity index 84% rename from acidslide-v1/schemas/schema-root-map.schema.json rename to gloss-v1/schemas/schema-root-map.schema.json index 2514b2e..d2f13d2 100644 --- a/acidslide-v1/schemas/schema-root-map.schema.json +++ b/gloss-v1/schemas/schema-root-map.schema.json @@ -1,13 +1,13 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/schema-root-map.schema.json", - "title": "AcidSlide OOXML Content-Type and Root Mapping", + "$id": "https://gloss.dev/schemas/schema-root-map.schema.json", + "title": "Gloss OOXML Content-Type and Root Mapping", "type": "object", "additionalProperties": false, "required": ["schema_version", "mapping_id", "relevant_part_globs", "excluded_part_globs", "entries"], "properties": { "schema_version": { "const": "1.0" }, - "mapping_id": { "const": "acidslide-schema-root-map-v1" }, + "mapping_id": { "const": "gloss-schema-root-map-v1" }, "relevant_part_globs": { "type": "array", "minItems": 1, diff --git a/acidslide-v1/schemas/scored-assertion-inventory.schema.json b/gloss-v1/schemas/scored-assertion-inventory.schema.json similarity index 92% rename from acidslide-v1/schemas/scored-assertion-inventory.schema.json rename to gloss-v1/schemas/scored-assertion-inventory.schema.json index f028a8f..19fafdf 100644 --- a/acidslide-v1/schemas/scored-assertion-inventory.schema.json +++ b/gloss-v1/schemas/scored-assertion-inventory.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/scored-assertion-inventory.schema.json", - "title": "AcidSlide Scored Assertion Inventory", + "$id": "https://gloss.dev/schemas/scored-assertion-inventory.schema.json", + "title": "Gloss Scored Assertion Inventory", "type": "object", "additionalProperties": false, "required": [ @@ -17,9 +17,9 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "inventory_id": { "const": "acidslide-scored-assertion-inventory-v1" }, + "inventory_id": { "const": "gloss-scored-assertion-inventory-v1" }, "lifecycle_state": { "enum": ["candidate", "frozen"] }, - "benchmark_version": { "const": "acidslide-v1.0.0" }, + "benchmark_version": { "const": "gloss-v1.0.0" }, "prompt_bundle_sha256": { "$ref": "#/$defs/hash_or_pending" }, "reference_image_bundle_sha256": { "$ref": "#/$defs/hash_or_pending" }, "asset_manifest_sha256": { "$ref": "#/$defs/hash_or_pending" }, @@ -91,14 +91,14 @@ ], "$defs": { "assertion_evidence_index": { - "title": "AcidSlide Assertion Evidence Index", + "title": "Gloss Assertion Evidence Index", "description": "The release-only fixtures/index.json is a closed, exact projection of every frozen assertion's evidence identifiers. It is not itself evidence and cannot make a candidate assertion complete.", "type": "object", "additionalProperties": false, "required": ["schema_version", "index_id", "assertion_inventory_review_sha256", "assertions"], "properties": { "schema_version": { "const": "1.0" }, - "index_id": { "const": "acidslide-assertion-evidence-index-v1" }, + "index_id": { "const": "gloss-assertion-evidence-index-v1" }, "assertion_inventory_review_sha256": { "$ref": "#/$defs/prefixed_sha256" }, "assertions": { "type": "array", diff --git a/acidslide-v1/schemas/scored-assertion.schema.json b/gloss-v1/schemas/scored-assertion.schema.json similarity index 98% rename from acidslide-v1/schemas/scored-assertion.schema.json rename to gloss-v1/schemas/scored-assertion.schema.json index dd6ab1f..cb37b70 100644 --- a/acidslide-v1/schemas/scored-assertion.schema.json +++ b/gloss-v1/schemas/scored-assertion.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/scored-assertion.schema.json", - "title": "AcidSlide Scored Assertion", + "$id": "https://gloss.dev/schemas/scored-assertion.schema.json", + "title": "Gloss Scored Assertion", "description": "Atomic prompt/reference-image/asset-manifest requirement. Gold OOXML is never an allowed provenance source.", "type": "object", "additionalProperties": false, diff --git a/acidslide-v1/schemas/scoring-manifest.schema.json b/gloss-v1/schemas/scoring-manifest.schema.json similarity index 96% rename from acidslide-v1/schemas/scoring-manifest.schema.json rename to gloss-v1/schemas/scoring-manifest.schema.json index 1677372..e0bd3e4 100644 --- a/acidslide-v1/schemas/scoring-manifest.schema.json +++ b/gloss-v1/schemas/scoring-manifest.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/scoring-manifest.schema.json", - "title": "AcidSlide v1 Frozen Scoring Manifest", + "$id": "https://gloss.dev/schemas/scoring-manifest.schema.json", + "title": "Gloss v1 Frozen Scoring Manifest", "type": "object", "additionalProperties": false, "required": [ @@ -21,9 +21,9 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "manifest_id": { "const": "acidslide-scoring-manifest-v1" }, + "manifest_id": { "const": "gloss-scoring-manifest-v1" }, "release_status": { "const": "frozen" }, - "benchmark_version": { "type": "string", "pattern": "^acidslide-v1\\.0\\.0$" }, + "benchmark_version": { "type": "string", "pattern": "^gloss-v1\\.0\\.0$" }, "platform": { "const": "linux/amd64" }, "oci_image_digest": { "$ref": "#/$defs/prefixed_sha256" }, "runtime": { @@ -117,7 +117,7 @@ "const": ["libreoffice", "--headless", "-env:UserInstallation=file://", "--convert-to", "pdf", "--outdir", "/work", "/input/submission.pptx"] }, "pdftoppm_command": { - "const": ["pdftoppm", "-png", "-scale-to-x", "1920", "-scale-to-y", "1080", "/work/submission.pdf", "/work/acidslide-render"] + "const": ["pdftoppm", "-png", "-scale-to-x", "1920", "-scale-to-y", "1080", "/work/submission.pdf", "/work/gloss-render"] }, "presentation_size_emu": { "const": { "cx": 12192000, "cy": 6858000 } diff --git a/acidslide-v1/schemas/ssim-profile-v1.json b/gloss-v1/schemas/ssim-profile-v1.json similarity index 89% rename from acidslide-v1/schemas/ssim-profile-v1.json rename to gloss-v1/schemas/ssim-profile-v1.json index 48f9f75..01d7adf 100644 --- a/acidslide-v1/schemas/ssim-profile-v1.json +++ b/gloss-v1/schemas/ssim-profile-v1.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "profile_id": "acidslide-ssim-profile-v1", + "profile_id": "gloss-ssim-profile-v1", "algorithm": "skimage.metrics.structural_similarity", "threshold": 0.9999, "dtype": "uint8", diff --git a/acidslide-v1/schemas/ssim-profile.schema.json b/gloss-v1/schemas/ssim-profile.schema.json similarity index 85% rename from acidslide-v1/schemas/ssim-profile.schema.json rename to gloss-v1/schemas/ssim-profile.schema.json index f6635e3..0817069 100644 --- a/acidslide-v1/schemas/ssim-profile.schema.json +++ b/gloss-v1/schemas/ssim-profile.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/ssim-profile.schema.json", - "title": "AcidSlide v1 SSIM Comparison Profile", + "$id": "https://gloss.dev/schemas/ssim-profile.schema.json", + "title": "Gloss v1 SSIM Comparison Profile", "type": "object", "additionalProperties": false, "required": [ @@ -23,7 +23,7 @@ ], "properties": { "schema_version": { "const": "1.0" }, - "profile_id": { "const": "acidslide-ssim-profile-v1" }, + "profile_id": { "const": "gloss-ssim-profile-v1" }, "algorithm": { "const": "skimage.metrics.structural_similarity" }, "threshold": { "const": 0.9999 }, "dtype": { "const": "uint8" }, diff --git a/acidslide-v1/schemas/submission-status.schema.json b/gloss-v1/schemas/submission-status.schema.json similarity index 98% rename from acidslide-v1/schemas/submission-status.schema.json rename to gloss-v1/schemas/submission-status.schema.json index 91a1faf..ce45cdf 100644 --- a/acidslide-v1/schemas/submission-status.schema.json +++ b/gloss-v1/schemas/submission-status.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://acidslide.dev/schemas/submission-status.schema.json", - "title": "AcidSlide Submission Status Response", + "$id": "https://gloss.dev/schemas/submission-status.schema.json", + "title": "Gloss Submission Status Response", "type": "object", "additionalProperties": false, "required": ["submission_id", "campaign_id", "campaign_slot", "status", "result", "error"], diff --git a/acidslide-v1/service/.dockerignore b/gloss-v1/service/.dockerignore similarity index 100% rename from acidslide-v1/service/.dockerignore rename to gloss-v1/service/.dockerignore diff --git a/acidslide-v1/service/.env.example b/gloss-v1/service/.env.example similarity index 95% rename from acidslide-v1/service/.env.example rename to gloss-v1/service/.env.example index a22c49a..993deac 100644 --- a/acidslide-v1/service/.env.example +++ b/gloss-v1/service/.env.example @@ -1,5 +1,5 @@ -SITE_DOMAIN=acidslide.dev -API_DOMAIN=api.acidslide.dev +SITE_DOMAIN=gloss.dev +API_DOMAIN=api.gloss.dev TLS_EMAIL=ops@example.com SERVICE_VERSION=1.0.0 @@ -10,7 +10,7 @@ API_KEY_PEPPER=replace-with-32-or-more-random-characters ENCRYPTION_KEY=replace-with-a-valid-fernet-key METRICS_BEARER_TOKEN=replace-with-32-or-more-random-characters -GRADER_IMAGE=acidslide/grader:1.0.0 +GRADER_IMAGE=gloss/grader:1.0.0 GRADER_IMAGE_DIGEST=sha256:replace-after-building-the-canonical-image LIBREOFFICE_VERSION=replace-with-exact-build-string FONT_BUNDLE_HASH=sha256:replace-with-canonical-font-bundle-hash @@ -39,7 +39,7 @@ DRIFT_CANARY_MAX_AGE_SECONDS=691200 # Generate a distinct Ed25519 key. The API receives only the public keyring; # Compose injects the private key only into the quarantine dispatcher. -QUARANTINE_IMAGE=acidslide/quarantine:1.0.0 +QUARANTINE_IMAGE=gloss/quarantine:1.0.0 QUARANTINE_IMAGE_DIGEST=sha256:replace-after-building-the-quarantine-image QUARANTINE_SIGNING_KEY_ID=quarantine-2026-01 QUARANTINE_SIGNING_PRIVATE_KEY=replace-with-base64-raw-ed25519-private-key diff --git a/acidslide-v1/service/.gitignore b/gloss-v1/service/.gitignore similarity index 100% rename from acidslide-v1/service/.gitignore rename to gloss-v1/service/.gitignore diff --git a/acidslide-v1/service/Caddyfile b/gloss-v1/service/Caddyfile similarity index 100% rename from acidslide-v1/service/Caddyfile rename to gloss-v1/service/Caddyfile diff --git a/acidslide-v1/service/Dockerfile b/gloss-v1/service/Dockerfile similarity index 65% rename from acidslide-v1/service/Dockerfile rename to gloss-v1/service/Dockerfile index 1c048c7..a4476f4 100644 --- a/acidslide-v1/service/Dockerfile +++ b/gloss-v1/service/Dockerfile @@ -5,25 +5,25 @@ ENV PIP_NO_CACHE_DIR=1 WORKDIR /build COPY --from=uv /uv /usr/local/bin/uv COPY pyproject.toml uv.lock README.md ./ -COPY acidslide_service ./acidslide_service -COPY --from=schemas generation-profile.schema.json environment-attestation.schema.json control-handoff.schema.json /opt/acidslide/schemas/ +COPY gloss_service ./gloss_service +COPY --from=schemas generation-profile.schema.json environment-attestation.schema.json control-handoff.schema.json /opt/gloss/schemas/ RUN uv sync --frozen --no-dev --no-editable FROM python:3.12-slim-bookworm AS runtime-base ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \ - PATH=/opt/acidslide/venv/bin:$PATH + PATH=/opt/gloss/venv/bin:$PATH RUN apt-get update \ && apt-get install -y --no-install-recommends ca-certificates curl \ && rm -rf /var/lib/apt/lists/* \ - && useradd --uid 10001 --create-home --shell /usr/sbin/nologin acidslide \ + && useradd --uid 10001 --create-home --shell /usr/sbin/nologin gloss \ && mkdir -p /app /data \ - && chown -R acidslide:acidslide /app /data + && chown -R gloss:gloss /app /data -COPY --from=builder /build/.venv /opt/acidslide/venv -COPY --from=builder /opt/acidslide/schemas /opt/acidslide/schemas +COPY --from=builder /build/.venv /opt/gloss/venv +COPY --from=builder /opt/gloss/schemas /opt/gloss/schemas WORKDIR /app COPY alembic.ini ./ COPY alembic ./alembic @@ -33,7 +33,7 @@ USER 10001:10001 EXPOSE 8000 HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \ CMD curl --fail http://127.0.0.1:8000/health/live || exit 1 -CMD ["sh", "-c", "alembic upgrade head && exec uvicorn acidslide_service.main:app --host 0.0.0.0 --port 8000 --proxy-headers --forwarded-allow-ips=*"] +CMD ["sh", "-c", "alembic upgrade head && exec uvicorn gloss_service.main:app --host 0.0.0.0 --port 8000 --proxy-headers --forwarded-allow-ips=*"] FROM runtime-base AS worker USER root @@ -41,19 +41,19 @@ RUN apt-get update \ && apt-get install -y --no-install-recommends docker.io \ && rm -rf /var/lib/apt/lists/* USER 10001:10001 -CMD ["acidslide-worker"] +CMD ["gloss-worker"] # Built only after the canonical grader image has been pinned locally. This is # the sole image that receives and parses the original upload. -FROM acidslide/grader:1.0.0 AS quarantine-job +FROM gloss/grader:1.0.0 AS quarantine-job USER root -COPY . /opt/acidslide/service -RUN /bin/uv export --project /opt/acidslide/service --frozen --no-dev --no-emit-project \ +COPY . /opt/gloss/service +RUN /bin/uv export --project /opt/gloss/service --frozen --no-dev --no-emit-project \ --format requirements-txt --output-file /tmp/service-requirements.txt \ - && /bin/uv pip install --python /opt/acidslide/venv/bin/python \ + && /bin/uv pip install --python /opt/gloss/venv/bin/python \ --requirements /tmp/service-requirements.txt \ - && /bin/uv pip install --python /opt/acidslide/venv/bin/python \ - --no-deps /opt/acidslide/service \ + && /bin/uv pip install --python /opt/gloss/venv/bin/python \ + --no-deps /opt/gloss/service \ && rm /tmp/service-requirements.txt # The grader image freezes wall time for deterministic rendering. Quarantine # verdicts are short-lived security credentials and must use real wall time. @@ -62,4 +62,4 @@ ENV LD_PRELOAD="" \ FAKETIME_DONT_FAKE_MONOTONIC="" \ FAKETIME_NO_CACHE="" USER grader -ENTRYPOINT ["python3", "-m", "acidslide_service.quarantine_job"] +ENTRYPOINT ["python3", "-m", "gloss_service.quarantine_job"] diff --git a/acidslide-v1/service/README.md b/gloss-v1/service/README.md similarity index 87% rename from acidslide-v1/service/README.md rename to gloss-v1/service/README.md index b7ae969..d92214f 100644 --- a/acidslide-v1/service/README.md +++ b/gloss-v1/service/README.md @@ -69,14 +69,14 @@ Interactive documentation is served at `/v1/docs`; the reviewed contract is Python 3.12–3.14 and `uv` are supported. ```bash -cd acidslide-v1/service +cd gloss-v1/service uv sync --extra dev uv run alembic upgrade head -uv run acidslide-admin create-org "Local lab" -uv run uvicorn acidslide_service.main:app --reload +uv run gloss-admin create-org "Local lab" +uv run uvicorn gloss_service.main:app --reload ``` -Set the returned key as `ACIDSLIDE_API_KEY`, register a model/revision and generation profile, then +Set the returned key as `GLOSS_API_KEY`, register a model/revision and generation profile, then precommit a campaign with its assistance class and profile digest. Create `submission.json` from the returned campaign key: @@ -98,30 +98,30 @@ Then submit a 5-slide Level 1 deck: ```bash curl http://localhost:8000/v1/submissions \ - -H "Authorization: Bearer $ACIDSLIDE_API_KEY" \ + -H "Authorization: Bearer $GLOSS_API_KEY" \ -F 'metadata= Path: path, Path.cwd() / path, Path(__file__).resolve().parents[2] / "schemas" / "control-handoff.schema.json", - Path("/opt/acidslide/schemas/control-handoff.schema.json"), + Path("/opt/gloss/schemas/control-handoff.schema.json"), ) resolved = next((candidate for candidate in candidates if candidate.is_file()), None) if resolved is None: diff --git a/acidslide-v1/service/acidslide_service/cli.py b/gloss-v1/service/gloss_service/cli.py similarity index 87% rename from acidslide-v1/service/acidslide_service/cli.py rename to gloss-v1/service/gloss_service/cli.py index f76be2a..d22debc 100644 --- a/acidslide-v1/service/acidslide_service/cli.py +++ b/gloss-v1/service/gloss_service/cli.py @@ -8,16 +8,16 @@ from sqlalchemy import select -from acidslide_service.canary import DriftCanaryError, run_drift_canary -from acidslide_service.config import get_settings -from acidslide_service.database import SessionLocal, initialize_database -from acidslide_service.models import Organization -from acidslide_service.runner import DockerGradingRunner -from acidslide_service.security import issue_api_key +from gloss_service.canary import DriftCanaryError, run_drift_canary +from gloss_service.config import get_settings +from gloss_service.database import SessionLocal, initialize_database +from gloss_service.models import Organization +from gloss_service.runner import DockerGradingRunner +from gloss_service.security import issue_api_key def main() -> None: - parser = argparse.ArgumentParser(prog="acidslide-admin") + parser = argparse.ArgumentParser(prog="gloss-admin") subparsers = parser.add_subparsers(dest="command", required=True) subparsers.add_parser("init-db", help="Create missing database tables") create = subparsers.add_parser("create-org", help="Issue an API key to an organization") diff --git a/acidslide-v1/service/acidslide_service/config.py b/gloss-v1/service/gloss_service/config.py similarity index 95% rename from acidslide-v1/service/acidslide_service/config.py rename to gloss-v1/service/gloss_service/config.py index 4fadecd..6dc1928 100644 --- a/acidslide-v1/service/acidslide_service/config.py +++ b/gloss-v1/service/gloss_service/config.py @@ -38,14 +38,14 @@ class Settings(BaseSettings): """Environment-backed service settings.""" model_config = SettingsConfigDict( - env_prefix="ACIDSLIDE_", + env_prefix="GLOSS_", env_file=".env", env_file_encoding="utf-8", extra="ignore", ) app_env: str = "development" - database_url: str = "sqlite:///./acidslide-service.db" + database_url: str = "sqlite:///./gloss-service.db" storage_path: Path = Path("./.data") public_base_url: str = "http://localhost:8000" admin_api_key: str = "development-admin-key-change-me" @@ -54,7 +54,7 @@ class Settings(BaseSettings): trusted_hosts: Annotated[list[str], NoDecode] = ["localhost", "127.0.0.1", "testserver"] cors_origins: Annotated[list[str], NoDecode] = [] - active_benchmark_versions: Annotated[list[str], NoDecode] = ["acidslide-v1.0.0"] + active_benchmark_versions: Annotated[list[str], NoDecode] = ["gloss-v1.0.0"] frozen_benchmark_versions: Annotated[list[str], NoDecode] = [] required_prompt_variants: Annotated[list[str], NoDecode] = [ "canonical", @@ -84,7 +84,7 @@ class Settings(BaseSettings): ) scoring_manifest_path: Path = Path("../benchmark/scoring-manifest.json") gold_evidence_path: Path = Path("../benchmark/gold-evidence.json") - gold_resolved_path: Path = Path("../benchmark/deck/gold/acidslide-v1-gold.mce-resolved.pptx") + gold_resolved_path: Path = Path("../benchmark/deck/gold/gloss-v1-gold.mce-resolved.pptx") control_handoff_schema_path: Path = Path("../schemas/control-handoff.schema.json") control_verification_keys_json: str = "{}" drift_canary_max_age_seconds: int = 8 * 24 * 60 * 60 @@ -92,7 +92,7 @@ class Settings(BaseSettings): quarantine_signing_key_id: str = "" quarantine_signing_private_key: str = "" quarantine_verdict_ttl_seconds: int = 300 - quarantine_image: str = "acidslide/quarantine:1.0.0" + quarantine_image: str = "gloss/quarantine:1.0.0" quarantine_image_digest: str = "" quarantine_timeout_seconds: int = 180 quarantine_memory: str = "1g" @@ -101,7 +101,7 @@ class Settings(BaseSettings): quarantine_uid: int = 10001 allow_insecure_quarantine_runner: bool = False - grader_image: str = "acidslide/grader:1.0.0" + grader_image: str = "gloss/grader:1.0.0" grader_image_digest: str = "" grader_timeout_seconds: int = 600 grader_memory: str = "2g" @@ -192,13 +192,13 @@ def enforce_production_safety(self) -> Settings: try: Fernet(self.encryption_key.encode()) except (ValueError, TypeError) as exc: - raise ValueError("ACIDSLIDE_ENCRYPTION_KEY must be a valid Fernet key") from exc + raise ValueError("GLOSS_ENCRYPTION_KEY must be a valid Fernet key") from exc try: environment_attestation = self.environment_attestation except (TypeError, ValueError, json.JSONDecodeError) as exc: raise ValueError( - "ACIDSLIDE_ENVIRONMENT_ATTESTATION_JSON must contain a JSON object" + "GLOSS_ENVIRONMENT_ATTESTATION_JSON must contain a JSON object" ) from exc if self.app_env == "production": @@ -245,7 +245,7 @@ def enforce_production_safety(self) -> Settings: Path(__file__).resolve().parents[2] / "schemas" / "environment-attestation.schema.json", - Path("/opt/acidslide/schemas/environment-attestation.schema.json"), + Path("/opt/gloss/schemas/environment-attestation.schema.json"), ) schema_path = next((path for path in schema_candidates if path.is_file()), None) if schema_path is None: @@ -340,7 +340,7 @@ def enforce_production_safety(self) -> Settings: if value in _DEV_RELEASE_HASHES: problems.append(f"{setting_name} must pin the active release artifact") try: - from acidslide_service.quarantine_handoff import load_verification_keys + from gloss_service.quarantine_handoff import load_verification_keys load_verification_keys(self.quarantine_verification_keys_json) except ValueError as exc: diff --git a/acidslide-v1/service/acidslide_service/database.py b/gloss-v1/service/gloss_service/database.py similarity index 92% rename from acidslide-v1/service/acidslide_service/database.py rename to gloss-v1/service/gloss_service/database.py index 82760dc..9b2dfaa 100644 --- a/acidslide-v1/service/acidslide_service/database.py +++ b/gloss-v1/service/gloss_service/database.py @@ -7,7 +7,7 @@ from sqlalchemy import Engine, create_engine, event from sqlalchemy.orm import DeclarativeBase, Session, sessionmaker -from acidslide_service.config import Settings, get_settings +from gloss_service.config import Settings, get_settings class Base(DeclarativeBase): @@ -47,6 +47,6 @@ def get_session() -> Generator[Session, None, None]: def initialize_database() -> None: - from acidslide_service import models # noqa: F401 + from gloss_service import models # noqa: F401 Base.metadata.create_all(bind=engine) diff --git a/acidslide-v1/service/acidslide_service/leaderboard.py b/gloss-v1/service/gloss_service/leaderboard.py similarity index 98% rename from acidslide-v1/service/acidslide_service/leaderboard.py rename to gloss-v1/service/gloss_service/leaderboard.py index 01ef6b7..4648004 100644 --- a/acidslide-v1/service/acidslide_service/leaderboard.py +++ b/gloss-v1/service/gloss_service/leaderboard.py @@ -9,9 +9,9 @@ from sqlalchemy import select from sqlalchemy.orm import Session, joinedload -from acidslide_service.config import Settings -from acidslide_service.models import Campaign, LeaderboardSnapshot, Submission, SubmissionStatus -from acidslide_service.service import VERIFICATION_LABEL, VERIFICATION_SCOPE, scoring_cohort_id +from gloss_service.config import Settings +from gloss_service.models import Campaign, LeaderboardSnapshot, Submission, SubmissionStatus +from gloss_service.service import VERIFICATION_LABEL, VERIFICATION_SCOPE, scoring_cohort_id def _iso(value: datetime | None) -> str | None: diff --git a/acidslide-v1/service/acidslide_service/main.py b/gloss-v1/service/gloss_service/main.py similarity index 98% rename from acidslide-v1/service/acidslide_service/main.py rename to gloss-v1/service/gloss_service/main.py index dc52bca..e67248e 100644 --- a/acidslide-v1/service/acidslide_service/main.py +++ b/gloss-v1/service/gloss_service/main.py @@ -1,4 +1,4 @@ -"""FastAPI application for submissions and the public AcidSlide leaderboard.""" +"""FastAPI application for submissions and the public Gloss leaderboard.""" from __future__ import annotations @@ -42,11 +42,11 @@ from starlette.middleware.base import RequestResponseEndpoint from starlette.middleware.trustedhost import TrustedHostMiddleware -from acidslide_service.canary import drift_canary_health -from acidslide_service.config import Settings, get_settings -from acidslide_service.database import Base, SessionLocal, engine, get_session -from acidslide_service.leaderboard import build_leaderboard, build_run_ledger -from acidslide_service.models import ( +from gloss_service.canary import drift_canary_health +from gloss_service.config import Settings, get_settings +from gloss_service.database import Base, SessionLocal, engine, get_session +from gloss_service.leaderboard import build_leaderboard, build_run_ledger +from gloss_service.models import ( Artifact, Campaign, GenerationProfile, @@ -59,7 +59,7 @@ SubmissionStatus, WorkerHeartbeat, ) -from acidslide_service.schemas import ( +from gloss_service.schemas import ( CampaignCreate, CampaignCreated, GenerationProfileCreate, @@ -78,14 +78,14 @@ SubmissionMetadata, SubmissionStatusResponse, ) -from acidslide_service.security import ( +from gloss_service.security import ( authenticate_api_key, encrypt_secret, issue_api_key, require_admin, require_organization, ) -from acidslide_service.service import ( +from gloss_service.service import ( VERIFICATION_LABEL, VERIFICATION_SCOPE, check_submission_limits, @@ -93,7 +93,7 @@ scoring_cohort_id, status_payload, ) -from acidslide_service.storage import ( +from gloss_service.storage import ( InvalidUploadError, UploadTimeoutError, UploadTooLargeError, @@ -101,21 +101,21 @@ ensure_storage, store_upload, ) -from acidslide_service.webhooks import UnsafeWebhookURLError, validate_webhook_url +from gloss_service.webhooks import UnsafeWebhookURLError, validate_webhook_url -logger = logging.getLogger("acidslide.service") +logger = logging.getLogger("gloss.service") REQUESTS = Counter( - "acidslide_http_requests_total", + "gloss_http_requests_total", "HTTP requests", ("method", "route", "status"), ) REQUEST_SECONDS = Histogram( - "acidslide_http_request_duration_seconds", + "gloss_http_request_duration_seconds", "HTTP request duration", ("method", "route"), ) SUBMISSIONS = Counter( - "acidslide_submissions_total", + "gloss_submissions_total", "Submission ingestion outcomes", ("outcome",), ) @@ -150,7 +150,7 @@ def _report_html(submission: Submission) -> str: report_json = html.escape(json.dumps(report, indent=2, sort_keys=True)) return f""" -AcidSlide report · {html.escape(submission.id)} +Gloss report · {html.escape(submission.id)}