From 4198d54fa66093804f9952b7de521bece146bf63 Mon Sep 17 00:00:00 2001 From: Steven Obiajulu Date: Sun, 16 Aug 2026 00:25:14 -0400 Subject: [PATCH] test(docx-core): add corpus differential-testing harness and LibreOffice cross-process lock MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Investigation deliverables for corpus-scale differential/fuzz testing. No behavior change to shipping engine code; adds an opt-in corpus harness, a cross-process LibreOffice oracle lock, and minimized synthetic reproductions. Harness (scripts/corpus/, all opt-in, no default CI job, no document bytes committed): - differential-corpus-manifest.json: 520 SHA-256-pinned entries across five sources with a derived OOXML feature index (the only committed corpus content). - classify_docx_features.mjs: OOXML feature classifier producing the derived index. - fetch_differential_corpus.mjs: pins-and-fetches into a local cache, extending the prepare_real_comparison_corpus.mjs pattern (gated like SAFE_DOCX_REAL_CORPUS_DIR). - generate_oom_repro.mjs: deterministic synthetic reproduction for #874. - README.md + INVESTIGATION_REPORT.md: per-source licensing determination and a privacy-safe run summary. LibreOffice oracle (packages/docx-core): - Add acquireGlobalSofficeLock: a machine-wide lockfile serializing every soffice launch (probe + oracle) so parallel workers/sessions cannot spawn concurrent headless LibreOffice — the amplification vector behind #627. Stale locks whose holder PID is dead are stolen. Path/poll are parameterized for unit testing. - libreoffice-oracle-lock.test.ts: pure unit coverage (exclusive acquire, contention, stale-steal) with no soffice launch. Findings filed from the run: #874 (O(n*m) LCS matrix OOM), #875 (BOM-prefixed document.xml raw ParseError), mechanism for #742 (rebuild unwraps pre-tracked changes), and live #627 leaked-process evidence. Ref: #874 Ref: #875 Ref: #627 --- packages/docx-core/src/index.ts | 2 +- .../libreoffice-oracle-lock.test.ts | 94 + .../src/integration/libreoffice-oracle.ts | 92 +- scripts/corpus/INVESTIGATION_REPORT.md | 131 + scripts/corpus/README.md | 50 + scripts/corpus/classify_docx_features.mjs | 202 + .../corpus/differential-corpus-manifest.json | 32752 ++++++++++++++++ scripts/corpus/fetch_differential_corpus.mjs | 130 + scripts/corpus/generate_oom_repro.mjs | 79 + 9 files changed, 33530 insertions(+), 2 deletions(-) create mode 100644 packages/docx-core/src/integration/libreoffice-oracle-lock.test.ts create mode 100644 scripts/corpus/INVESTIGATION_REPORT.md create mode 100644 scripts/corpus/README.md create mode 100644 scripts/corpus/classify_docx_features.mjs create mode 100644 scripts/corpus/differential-corpus-manifest.json create mode 100644 scripts/corpus/fetch_differential_corpus.mjs create mode 100644 scripts/corpus/generate_oom_repro.mjs diff --git a/packages/docx-core/src/index.ts b/packages/docx-core/src/index.ts index fd22d9b8..5b026ae2 100644 --- a/packages/docx-core/src/index.ts +++ b/packages/docx-core/src/index.ts @@ -65,7 +65,7 @@ export { // Re-export the LibreOffice accept/reject oracle (gated reference voter; callers skip when // `resolveSoffice()` is null or `probeSofficeUsable()` is false — the binary can exist yet // abort on launch under a restricted shell). odf-core's round-trip tests drive it with `.odt` jobs. -export { resolveSoffice, probeSofficeUsable, runLibreOfficeOracle, type OracleJob } from './integration/libreoffice-oracle.js'; +export { resolveSoffice, probeSofficeUsable, runLibreOfficeOracle, acquireGlobalSofficeLock, type OracleJob } from './integration/libreoffice-oracle.js'; // Synthetic-DOCX fixture builders re-exported for downstream packages' test suites // (odf-core's DOCX→ODT conversion tests build their inputs with these). They live under diff --git a/packages/docx-core/src/integration/libreoffice-oracle-lock.test.ts b/packages/docx-core/src/integration/libreoffice-oracle-lock.test.ts new file mode 100644 index 00000000..5284edef --- /dev/null +++ b/packages/docx-core/src/integration/libreoffice-oracle-lock.test.ts @@ -0,0 +1,94 @@ +/** + * Cross-process LibreOffice lock — pure unit coverage. + * + * The lock (`acquireGlobalSofficeLock`) serializes every soffice launch in the repo on a + * single machine-wide lockfile so parallel vitest workers, sibling agent sessions, and a + * human never spawn concurrent headless LibreOffice instances (the amplification vector + * behind issue #627). These cases exercise the lock's branches WITHOUT launching soffice, + * using a temp lockfile: exclusive acquisition, contention against a held lock, and stealing + * a stale lock whose recorded holder PID is dead. + * + * @see https://github.com/UseJunior/safe-docx/issues/627 + */ +import { existsSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs'; +import os from 'node:os'; +import path from 'node:path'; +import { afterEach, beforeEach, describe, expect } from 'vitest'; +import { acquireGlobalSofficeLock } from './libreoffice-oracle.js'; +import { testAllure, type AllureBddContext } from '../testing/allure-test.js'; + +const TEST_FEATURE = 'LibreOffice Oracle Cross-Process Lock'; +const test = testAllure.epic('Document Comparison').withLabels({ feature: TEST_FEATURE }); + +describe('acquireGlobalSofficeLock', () => { + let dir: string; + let lockPath: string; + + beforeEach(() => { + dir = mkdtempSync(path.join(os.tmpdir(), 'lo-lock-test-')); + lockPath = path.join(dir, 'soffice.lock'); + }); + afterEach(() => { + rmSync(dir, { recursive: true, force: true }); + }); + + test('acquires exclusively and releases idempotently', async ({ given, when, then, and }: AllureBddContext) => { + let release: () => void; + await given('a free lock path', () => { + expect(existsSync(lockPath)).toBe(false); + }); + await when('the lock is acquired', async () => { + release = await acquireGlobalSofficeLock(5_000, { lockPath, pollMs: 20 }); + }); + await then('the lockfile exists and records this process PID', () => { + expect(existsSync(lockPath)).toBe(true); + const holder = JSON.parse(readFileSync(lockPath, 'utf8')) as { pid: number }; + expect(holder.pid).toBe(process.pid); + }); + await and('releasing removes it and a second release is a no-op', () => { + release(); + expect(existsSync(lockPath)).toBe(false); + expect(() => release()).not.toThrow(); + }); + }); + + test('a second waiter blocks until the holder releases', async ({ given, when, then }: AllureBddContext) => { + let firstRelease: () => void; + let acquiredSecond = false; + await given('the lock is already held', async () => { + firstRelease = await acquireGlobalSofficeLock(5_000, { lockPath, pollMs: 20 }); + }); + await when('a second acquisition is attempted while held, then the holder releases', async () => { + const pending = acquireGlobalSofficeLock(5_000, { lockPath, pollMs: 20 }).then((r) => { + acquiredSecond = true; + return r; + }); + // Give the waiter time to spin at least once without the lock. + await new Promise((r) => setTimeout(r, 120)); + expect(acquiredSecond).toBe(false); + firstRelease(); + const secondRelease = await pending; + secondRelease(); + }); + await then('the second acquisition succeeded only after release', () => { + expect(acquiredSecond).toBe(true); + }); + }); + + test('steals a stale lock whose recorded holder PID is dead', async ({ given, when, then }: AllureBddContext) => { + await given('a lockfile owned by a non-existent PID', () => { + // PID 0x7fffffff is not a live process; process.kill(pid, 0) throws ESRCH. + writeFileSync(lockPath, JSON.stringify({ pid: 0x7fffffff, at: new Date().toISOString() })); + expect(existsSync(lockPath)).toBe(true); + }); + let release: () => void; + await when('a new acquisition runs', async () => { + release = await acquireGlobalSofficeLock(5_000, { lockPath, pollMs: 20 }); + }); + await then('it steals the stale lock and takes ownership', () => { + const holder = JSON.parse(readFileSync(lockPath, 'utf8')) as { pid: number }; + expect(holder.pid).toBe(process.pid); + release(); + }); + }); +}); diff --git a/packages/docx-core/src/integration/libreoffice-oracle.ts b/packages/docx-core/src/integration/libreoffice-oracle.ts index d96d0c36..840b7f4e 100644 --- a/packages/docx-core/src/integration/libreoffice-oracle.ts +++ b/packages/docx-core/src/integration/libreoffice-oracle.ts @@ -20,7 +20,18 @@ * CI does not install LibreOffice, so the oracle voter is a local developer check. */ import { execFile } from 'node:child_process'; -import { existsSync, mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs'; +import { + closeSync, + existsSync, + mkdirSync, + mkdtempSync, + openSync, + readFileSync, + rmSync, + statSync, + writeFileSync, + writeSync, +} from 'node:fs'; import os from 'node:os'; import path from 'node:path'; import { pathToFileURL } from 'node:url'; @@ -66,6 +77,81 @@ async function settleProfile(profile: string, timeoutMs = 1_500): Promise } } +/** + * Cross-process LibreOffice mutex. + * + * The in-process batching above already guarantees ONE headless launch per oracle batch, but + * nothing coordinated ACROSS processes: parallel vitest workers, sibling agent sessions, and a + * human running the oracle simultaneously each spawned their own soffice. LibreOffice's + * single-instance forwarding makes concurrent launches with distinct profiles merely expensive, + * but concurrent launches are also the amplification vector for the macOS headless startup + * crashes tracked in issue #627 — so all oracle launches in this repo serialize on one + * machine-wide lockfile. + * + * Protocol: exclusive-create (`wx`) a JSON lockfile in the OS temp dir. Holder records its PID; + * waiters poll, stealing the lock only when the recorded PID is dead or the file is older than + * `STALE_LOCK_MS` (a SIGKILLed holder cannot clean up). The steal itself loops back to the + * exclusive create, so exactly one contender wins the recreated file. + * + * @see https://github.com/UseJunior/safe-docx/issues/627 + */ +const GLOBAL_SOFFICE_LOCK = path.join(os.tmpdir(), 'safe-docx-soffice-global.lock'); +const STALE_LOCK_MS = 10 * 60_000; + +/** + * Acquire the cross-process LibreOffice mutex, returning an idempotent release function. + * `lockPath`/`pollMs` are parameterized for unit testing; production callers use the + * defaults (the machine-wide lockfile). Exported so a unit test can exercise the + * exclusive-acquire, wait-for-release, and stale-steal branches without launching soffice. + */ +export async function acquireGlobalSofficeLock( + timeoutMs = 300_000, + { lockPath = GLOBAL_SOFFICE_LOCK, pollMs = 200 }: { lockPath?: string; pollMs?: number } = {}, +): Promise<() => void> { + const deadline = Date.now() + timeoutMs; + for (;;) { + try { + const fd = openSync(lockPath, 'wx'); + writeSync(fd, JSON.stringify({ pid: process.pid, at: new Date().toISOString() })); + closeSync(fd); + let released = false; + return () => { + if (released) return; + released = true; + try { rmSync(lockPath, { force: true }); } catch { /* best effort */ } + }; + } catch { + let stale = false; + try { + const ageMs = Date.now() - statSync(lockPath).mtimeMs; + const holder = JSON.parse(readFileSync(lockPath, 'utf8')) as { pid?: number }; + const holderAlive = typeof holder.pid === 'number' && (() => { + try { process.kill(holder.pid!, 0); return true; } catch { return false; } + })(); + stale = !holderAlive || ageMs > STALE_LOCK_MS; + } catch (statErr) { + // Vanished between attempts (fine, retry) or unreadable content (steal after grace). + stale = existsSync(lockPath) + ? Date.now() - statSync(lockPath).mtimeMs > 10_000 + : false; + void statErr; + } + if (stale) { + try { rmSync(lockPath, { force: true }); } catch { /* racer removed it */ } + continue; + } + if (Date.now() > deadline) { + throw new Error( + `Timed out after ${timeoutMs}ms waiting for the cross-process LibreOffice lock at ` + + `${lockPath}; another oracle run appears to be live. Delete the lockfile ` + + 'only if you are sure no soffice-driving process is running.', + ); + } + await sleep(pollMs + Math.floor(Math.random() * pollMs)); + } + } +} + /** Resolve a LibreOffice binary, or null if none is available (callers skip the oracle). */ export function resolveSoffice(): string | null { const candidates = [ @@ -97,6 +183,7 @@ export function probeSofficeUsable(soffice: string): Promise { let result = probeResults.get(soffice); if (!result) { result = (async () => { + const releaseLock = await acquireGlobalSofficeLock(); const work = mkdtempSync(path.join(os.tmpdir(), 'lo-probe-')); try { const inPath = path.join(work, 'probe-input.txt'); @@ -119,6 +206,7 @@ export function probeSofficeUsable(soffice: string): Promise { ); return existsSync(path.join(outDir, 'probe-input.txt')); } finally { + releaseLock(); rmSync(work, { recursive: true, force: true }); } })(); @@ -256,6 +344,7 @@ export async function runLibreOfficeOracle(jobs: OracleJob[], soffice = resolveS if (!soffice) throw new Error('runLibreOfficeOracle: no soffice binary (call resolveSoffice() and skip)'); if (jobs.length === 0) return []; + const releaseLock = await acquireGlobalSofficeLock(); const work = mkdtempSync(path.join(os.tmpdir(), 'lo-oracle-')); const profile = path.join(work, 'profile'); const userDir = path.join(profile, 'user'); @@ -342,6 +431,7 @@ export async function runLibreOfficeOracle(jobs: OracleJob[], soffice = resolveS return extractDocumentXml(readFileSync(p)); })); } finally { + releaseLock(); if (!keepWork) rmSync(work, { recursive: true, force: true }); } } diff --git a/scripts/corpus/INVESTIGATION_REPORT.md b/scripts/corpus/INVESTIGATION_REPORT.md new file mode 100644 index 00000000..1846bcbd --- /dev/null +++ b/scripts/corpus/INVESTIGATION_REPORT.md @@ -0,0 +1,131 @@ +# Corpus differential/fuzz testing — investigation report + +Privacy-safe summary of a one-session corpus-scale differential and fuzz run against +safe-docx. Nothing here auto-merged; this PR is a draft. No document bytes, and no private +or customer identifiers/paths/hashes/text, appear in this repo or report. + +## Licensing determination (gate — completed before any fetch) + +See `scripts/corpus/README.md` for the per-source table. Determination: +- **Redistributable (full use):** open-agreements (CC-BY-4.0), docx-platform-tests + (Apache-2.0), dotnet/Open-XML-SDK (MIT). +- **Local testing only (hash + URL + derived flags; no bytes committed):** SuperDoc + docx-corpus (ODC-BY covers the database, not the underlying Common-Crawl documents) and + the LibreOffice docx-fuzzer seed corpus (MPL covers LibreOffice source, not the scraped + attachment documents). SuperDoc's MIT-vs-ODC-BY license conflict was resolved + conservatively toward ODC-BY. + +## Corpus acquired + +520 manifest entries, SHA-256-pinned: +- open-agreements 134, dotnet/Open-XML-SDK 117 (55 ISO-Strict + 62 comment/commentsEx), + docx-platform-tests 28, SuperDoc docx-corpus 240 (stratified across 10 document types, + en/ru/zh), LibreOffice fuzzer-seed archive 1 (275 members extracted locally). +- Strata (documents may carry several): tables 279, headers/footers 264, multi-section 167, + drawings 96, comments 59, iso-strict 55, plain-body 49, vml 43, text-boxes 31, fields 30, + tracked-changes 20, embedded-objects 11, notes 7, content-controls 4, math 3, moves 1. +- A local OOXML feature classifier (`classify_docx_features.mjs`) derived the feature index; + 0 unreadable packages across the SuperDoc sample. + +## Stages completed + +1. **Provenance/licensing review** — done (above). +2. **Manifest + fetch + classifier** — committed: `differential-corpus-manifest.json`, + `fetch_differential_corpus.mjs`, `classify_docx_features.mjs`. +3. **Deterministic smoke** — identity round-trip + self-comparison (both reconstruction + modes) over the full 520-doc corpus. Drivers enforced hard per-job timeouts and CPU + concurrency 4. +4. **External-oracle hardening** — LibreOffice cross-process lockfile added + unit-tested + + live two-process probe; Aspose licensed and watermark-verified. +5. **Corpus-scale run** — metamorphic mutation pairs (9 recipes × 2 modes over 64 + stratified docs) + package/parser fuzz (8 mutation ops over 30 stratified bases + 275 + LibreOffice fuzzer seeds). + +## Counts (by taxonomy) + +- **Smoke, local shard** (171 docs, 513 jobs): 494 pass; the 19 non-pass were all + rebuild-mode pre-tracked-input mismatches (finding F1) — self-inflicted invariant bug in + an early harness draft was corrected to projection-to-projection, isolating F1. +- **Smoke, external shard** (358 docs, 1083 jobs): 847 pass; 179 unsupported-undocumented + (all the BOM ParseError, finding F2); 30 supported-refusal (1 real `OpaquePassthrough` + + 29 self-inflicted build-race, re-run green); 27 rebuild accept-mismatch (F1/F3-class). +- **Metamorphic** (64 docs): 551 pass, 244 skipped (recipe inapplicable), plus mismatches + that all reduced to F1 (rebuild pre-tracked unwrap) or F3 (rebuild VML/text-box story + loss). Every `inplace` comparison satisfied the reject→original / accept→revised + invariant; failures were rebuild-only. Two initially-flagged "phantom-revisions" and all + "crash" rows were **harness** bugs (a cloned `w:tab`; a missing strict-namespace bind), + fixed and retracted. +- **Fuzz** (515 jobs): validity-preserving mutations behaved; deliberately-invalid mutations + failed closed; **1 genuine engine finding (F4, OOM)** on a valid LibreOffice fuzzer seed. + `invalid-no-content-types` "invalid-accepted" rows reflect that a package missing + `[Content_Types].xml` still round-trips via the load path — noted, not filed (arguably + lenient-but-safe). + +## Novel findings (minimized; issues filed) + +- **F4 — quadratic-memory OOM in comparison → issue #874 (filed).** + `computeAtomLcs` allocates an unconditional O(n·m) DP matrix; a single paragraph with a + few thousand atoms exhausts the heap (SIGABRT). Delta-debugged from a 204 KB fuzzer seed + to the atom-count mechanism; deterministic synthetic repro committed at + `generate_oom_repro.mjs` (invented text). Reproduces on clean `main`. +- **F2 — BOM-prefixed document.xml → issue #875 (filed).** + A UTF-8 BOM at the start of `word/document.xml` (as Microsoft's ISO-Strict exports emit — + 56/121 Open-XML-SDK files) throws a raw xmldom `ParseError` from both `DocxDocument.load` + and `compareDocuments` instead of loading or failing closed. Minimal synthetic repro in + the issue. Also notes Strict docs silently projecting to near-empty text. Clean `main`. +- **F1 — rebuild mode unwraps pre-existing tracked changes → commented on issue #742.** + Rebuild-mode comparison drops ``/`` wrappers from already-tracked + inputs, emitting bare `` (the Word-unreadable shape #742 reports); `inplace` + preserves them. Precise mechanism + minimal repro added to #742 (same family as #582); + no new issue to avoid duplication. + +## Oracle agreements / disagreements + +- **LibreOffice accept/reject oracle:** ran under the new cross-process lock; two concurrent + processes each completed full oracle batches, serialized, lock self-cleaned. No + disagreement observed on the sampled tracked-change accept/reject shapes. +- **Aspose:** licensed run verified. Not used as a blocking voter this session (see below); + no oracle disagreement to report. + +## Aspose watermark verification + +Confirmed the swallowed-license-failure defect in `aspose_compare.py` (globs `*.lic`, +`except Exception: pass`): an unlicensed run and an initially-mismatched license both emitted +**evaluation-watermarked** output while exiting 0. Root cause found: the on-disk license +allows product versions released before 2025-11-02, but `pip`'s default `aspose-words` +(26.7.0) is newer, so `set_license` raised `InvalidOperationException` — silently swallowed. +Pinning `aspose-words==25.10.0` and loading the license made output **verified +non-watermarked** (checked for "Evaluation Only" / "evaluation copy" in `word/document.xml`). +Recommendation captured below. + +## Resource / environmental notes + +- No uncontrolled process leak. Every worker ran under a hard per-job timeout; the only + process death was the OOM seed (SIGABRT under a capped heap), which the driver classified, + not a leak. +- One early self-inflicted build-race (running `npm run build -w docx-core`, which cleans + `dist`, while the smoke driver was live) produced 29 spurious "Cannot find package" + refusals; re-run green. Do not rebuild a package mid-run. +- LibreOffice #627 (macOS headless startup crash / parallel amplification) did **not** + reproduce with the lock in place. It **did** reproduce spontaneously in the environment: + 12 leaked headless soffice processes (1–2 day elapsed, 0% CPU/MEM, hung after startup), + whose referenced throwaway profile dirs had already been `rmSync`'d by the parent's + `finally` — the child outlived the parent's cleanup. Evidence posted to #627. None were + attributable to this session, and per the shared-machine kill ban I killed nothing. + The stage-4 lock closes the concurrency-amplification vector but not the reaping gap; a + process-group/stale-profile reaper is recommended on #627 but **deliberately not shipped + tonight** — killing processes on a shared machine under the `pkill` ban is unsafe without + perfect attribution. + +## Recommended next queue + +1. Fix F4 (#874): linear-space/Hirschberg LCS or a size-guarded bounded refusal — highest + severity (DoS on ordinary content). +2. Fix F2 (#875): strip/tolerate a leading BOM on XML parts before parsing; decide ISO-Strict + scope and make ingest either support it or refuse with an actionable error. +3. Land F1 under #742/#582: rebuild must preserve pre-existing revision markup or fail closed. +4. Harden `aspose_compare.py`: fail loudly on `set_license` errors, assert the output is not + watermarked, and pin a license-compatible `aspose-words` version (≤ the license's + free-upgrade date). Never swallow the license exception. +5. Consider promoting one deterministic, env-gated smoke harness (identity + self-compare) + from `.tmp/` into the tree once F1/F2/F4 are fixed — kept opt-in, never a default CI job. diff --git a/scripts/corpus/README.md b/scripts/corpus/README.md new file mode 100644 index 00000000..ef34ecba --- /dev/null +++ b/scripts/corpus/README.md @@ -0,0 +1,50 @@ +# Corpus differential-testing harness + +Opt-in machinery for running safe-docx's identity, self-comparison, metamorphic, and +package/parser-fuzz checks over a large, SHA-256-pinned corpus of real and synthetic +`.docx` files. Nothing here runs in default CI — it is developer-invoked and gated on a +local corpus cache, exactly like `SAFE_DOCX_REAL_CORPUS_DIR`. + +## What is committed vs. what is not + +**Committed (redistributable):** +- `differential-corpus-manifest.json` — `{ id, sha256, url, source, license, strata[], features, counts, parts }` per document. This is the corpus's entire committed content. +- `classify_docx_features.mjs` — the OOXML feature classifier that produced the derived `features`/`strata`/`counts` fields. That derived index is this repo's own work product. +- `fetch_differential_corpus.mjs` — pins-and-fetches the corpus into a local cache directory, SHA-256-verifying every file. +- `generate_oom_repro.mjs` — deterministic synthetic reproduction for issue #874. + +**Never committed:** any document *bytes*, and any identifier, path, filename, hash, or +extracted text from a private or customer document. The manifest lists only public-source +hashes and URLs. + +## Provenance & licensing determination (per source) + +| Source | License | Redistribution of the documents? | Use | +|---|---|---|---| +| `open-agreements` (local clone, 134 docs) | CC-BY-4.0 | Yes (attribution) | full | +| `docx-platform-tests` (local clone, 28 docs) | Apache-2.0 | Yes | full | +| `open-xml-sdk` (dotnet, MIT, 117 docs: 55 ISO-Strict + 62 comment/commentsEx) | MIT | Yes (cleanest external provenance) | full | +| `superdoc-docx-corpus` (docxcorp.us, 240 docs) | **ODC-BY** (database) | **No** — ODC-BY covers the *database*, not the underlying Common-Crawl documents | local testing only; hash+URL+derived flags only | +| `libreoffice-fuzzer-seeds` (dev-www.libreoffice.org) | published fuzzing corpus (MPL source headers) | **No** — MPL covers LibreOffice source, not the scraped/Bugzilla attachment documents | local testing only | + +The MIT/CC-BY/Apache sources grant rights in the documents themselves and are safe to +redistribute. The SuperDoc and LibreOffice collections carry a collection license that does +**not** establish rights in the underlying third-party documents, so for those sources the +repository holds only the manifest hash, URL, and derived feature flags — never bytes. + +The SuperDoc README (MIT) and its HuggingFace card / site (ODC-BY) disagree on the data +license; ODC-BY is treated as controlling (the more restrictive of the two). + +## Usage + +```bash +export SAFE_DOCX_DIFF_CORPUS_DIR=~/.cache/safe-docx-diff-corpus +export DOCX_PLATFORM_TESTS_DIR=~/Projects/docx-platform-tests # local clone (not fetchable) +node scripts/corpus/fetch_differential_corpus.mjs "$SAFE_DOCX_DIFF_CORPUS_DIR" +node scripts/corpus/classify_docx_features.mjs "$SAFE_DOCX_DIFF_CORPUS_DIR" --json /tmp/index.json +``` + +The run drivers used during the investigation (`drive_smoke.mjs`, `drive_mutate.mjs`, +`drive_fuzz.mjs`, and their per-file workers) are intentionally **not** committed — they +live under `.tmp/` (gitignored) as throwaway machinery. Re-derive them from the report if a +future run is needed, or promote a single opt-in harness once the findings below are fixed. diff --git a/scripts/corpus/classify_docx_features.mjs b/scripts/corpus/classify_docx_features.mjs new file mode 100644 index 00000000..e5252552 --- /dev/null +++ b/scripts/corpus/classify_docx_features.mjs @@ -0,0 +1,202 @@ +#!/usr/bin/env node +/** + * OOXML feature classifier for the differential-testing corpus. + * + * Derives a per-document feature index (revision markup, notes, comments, + * content controls, fields, drawings, math, structural counts, package-shape + * observations) so corpus sampling can be stratified by feature instead of + * testing only simple body-text documents. External corpora (Common-Crawl + * derived collections in particular) carry no OOXML feature labels; this + * derived index is this repository's own work product and is the only thing + * about those documents that is committed — never document bytes, and never + * revision-author names (only the count of distinct authors). + * + * Usage: + * node scripts/corpus/classify_docx_features.mjs [...more] [--json out.json] + * + * Also importable: `classifyDocxBuffer(buffer)` returns the feature record. + */ + +import { createHash } from 'node:crypto'; +import { readFileSync, writeFileSync, statSync, readdirSync } from 'node:fs'; +import { join } from 'node:path'; +import { realpathSync } from 'node:fs'; +import { pathToFileURL } from 'node:url'; +import JSZip from 'jszip'; + +const W_STRICT_NS = 'http://purl.oclc.org/ooxml/wordprocessingml/main'; + +/** Count non-overlapping regex matches. */ +function count(text, re) { + const m = text.match(new RegExp(re, 'g')); + return m ? m.length : 0; +} + +/** + * Classify one DOCX package buffer. Never throws: unreadable packages come + * back as `{ readable: false, error }` so deliberately-corrupt corpora can be + * indexed alongside well-formed ones. + */ +export async function classifyDocxBuffer(buffer) { + const record = { + sha256: createHash('sha256').update(buffer).digest('hex'), + bytes: buffer.length, + readable: true, + }; + let zip; + try { + zip = await JSZip.loadAsync(buffer); + } catch (error) { + return { ...record, readable: false, error: String(error?.message ?? error).slice(0, 200) }; + } + + const names = Object.keys(zip.files); + record.zipEntryCount = names.length; + const odd = names.filter( + (n) => n.startsWith('/') || n.includes('..') || n.includes('\\') || /[\u0000-\u001f]/.test(n), + ); + if (odd.length > 0) record.oddZipEntryNames = odd.length; + const seen = new Set(); + for (const n of names) { + if (seen.has(n)) { record.duplicateZipEntries = true; break; } + seen.add(n); + } + + async function text(name) { + const f = zip.file(name); + if (!f) return null; + try { return await f.async('string'); } catch { return null; } + } + + const contentTypes = await text('[Content_Types].xml'); + const doc = await text('word/document.xml'); + if (doc == null) { + return { ...record, readable: false, error: 'missing word/document.xml' }; + } + + record.strict = + doc.includes(W_STRICT_NS) || (contentTypes ?? '').includes('purl.oclc.org/ooxml'); + + // Revision markup (document body only; header/footer/notes revisions counted separately). + record.features = { + ins: count(doc, '/]'), + del: count(doc, '/]'), + move: count(doc, '/]|/]'), + rPrChange: count(doc, ']'), + pPrChange: count(doc, ']'), + sectPrChange: count(doc, ']'), + tblRowChange: count(doc, ']*>[\\s\\S]*?]') > 0 ? 1 : 0, + footnoteRefs: count(doc, ']'), + endnoteRefs: count(doc, ']'), + commentRefs: count(doc, ']'), + sdt: count(doc, ''), + fldSimple: count(doc, ']'), + instrText: count(doc, ']'), + hyperlinks: count(doc, ']'), + bookmarks: count(doc, ']'), + textBoxes: count(doc, ']'), + math: count(doc, ']'), + vml: count(doc, ']|]|]|]|]'), + drawings: count(doc, ']'), + altContent: count(doc, ']'), + tabs: count(doc, ']'), + breaks: count(doc, ']'), + }; + + record.counts = { + paragraphs: count(doc, ']|'), + runs: count(doc, ']|'), + tables: count(doc, ''), + rows: count(doc, ']|'), + cells: count(doc, '|]'), + sections: count(doc, ']|'), + }; + + // Distinct revision authors — COUNT only, never the names themselves. + const authors = new Set(); + for (const m of doc.matchAll(/w:author="([^"]*)"/g)) authors.add(m[1]); + record.revisionAuthorCount = authors.size; + + // Namespace redeclarations beyond the root element. + const rootEnd = doc.indexOf('>', doc.indexOf('= 0 ? count(doc.slice(rootEnd + 1), 'xmlns:') : 0; + + // Side parts and relationships. + const has = (n) => Boolean(zip.file(n)); + record.parts = { + footnotes: has('word/footnotes.xml'), + endnotes: has('word/endnotes.xml'), + comments: has('word/comments.xml'), + commentsExtended: has('word/commentsExtended.xml'), + numbering: has('word/numbering.xml'), + styles: has('word/styles.xml'), + settings: has('word/settings.xml'), + headers: names.filter((n) => /^word\/header\d*\.xml$/.test(n)).length, + footers: names.filter((n) => /^word\/footer\d*\.xml$/.test(n)).length, + embeddedObjects: names.filter((n) => n.startsWith('word/embeddings/')).length, + media: names.filter((n) => n.startsWith('word/media/')).length, + }; + const rels = await text('word/_rels/document.xml.rels'); + record.relationshipCount = rels ? count(rels, ']') : 0; + record.externalRelationships = rels ? count(rels, 'TargetMode="External"') : 0; + + // Strata labels for sampling. + const strata = []; + const f = record.features; + if (f.ins + f.del + f.move + f.rPrChange + f.pPrChange > 0) strata.push('tracked-changes'); + if (f.move > 0) strata.push('moves'); + if (f.footnoteRefs + f.endnoteRefs > 0) strata.push('notes'); + if (f.commentRefs > 0) strata.push('comments'); + if (f.sdt > 0) strata.push('content-controls'); + if (f.fldSimple + f.instrText > 0) strata.push('fields'); + if (f.textBoxes > 0) strata.push('text-boxes'); + if (f.math > 0) strata.push('math'); + if (f.vml > 0) strata.push('vml'); + if (f.drawings > 0) strata.push('drawings'); + if (record.counts.tables > 0) strata.push('tables'); + if (record.counts.sections > 1) strata.push('multi-section'); + if (record.parts.headers + record.parts.footers > 0) strata.push('headers-footers'); + if (record.strict) strata.push('iso-strict'); + if (record.parts.embeddedObjects > 0) strata.push('embedded-objects'); + if (strata.length === 0) strata.push('plain-body'); + record.strata = strata; + return record; +} + +function* walk(root) { + const st = statSync(root); + if (st.isFile()) { yield root; return; } + for (const entry of readdirSync(root, { withFileTypes: true })) { + const p = join(root, entry.name); + if (entry.isDirectory()) yield* walk(p); + else if (/\.(docx|docm)$/i.test(entry.name)) yield p; + } +} + +async function main() { + const args = process.argv.slice(2); + const jsonIdx = args.indexOf('--json'); + let outPath = null; + if (jsonIdx >= 0) { outPath = args[jsonIdx + 1]; args.splice(jsonIdx, 2); } + if (args.length === 0) { + console.error('Usage: classify_docx_features.mjs [...] [--json out.json]'); + process.exit(2); + } + const results = []; + for (const root of args) { + for (const file of walk(root)) { + const rec = await classifyDocxBuffer(readFileSync(file)); + results.push({ path: file, ...rec }); + } + } + const payload = JSON.stringify(results, null, 2); + if (outPath) writeFileSync(outPath, payload); + else console.log(payload); +} + +const invokedDirectly = (() => { + try { + return process.argv[1] && pathToFileURL(realpathSync(process.argv[1])).href === import.meta.url; + } catch { return false; } +})(); +if (invokedDirectly) await main(); diff --git a/scripts/corpus/differential-corpus-manifest.json b/scripts/corpus/differential-corpus-manifest.json new file mode 100644 index 00000000..2e66ba7c --- /dev/null +++ b/scripts/corpus/differential-corpus-manifest.json @@ -0,0 +1,32752 @@ +[ + { + "id": "open-agreements/577e8d06dcfe", + "sha256": "577e8d06dcfea86608b752c05920bc17cc2489ab673c477ee9a41a51f40253fc", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-board-consent-safe/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11194, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 27, + "runs": 35, + "tables": 1, + "rows": 3, + "cells": 6, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/a86f35dde939", + "sha256": "a86f35dde9391964c40caca190fe94ee5b3c0b889fee6b6519163bea9f0fee2c", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-board-consent-safe/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11193, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 28, + "runs": 37, + "tables": 1, + "rows": 3, + "cells": 6, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/2795da5ec2ad", + "sha256": "2795da5ec2adcb53c0fb13689532e728dc1f6498acbc165f63c00954a4bc7e75", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-board-ratifying-consent/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11649, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 43, + "runs": 61, + "tables": 2, + "rows": 8, + "cells": 16, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/fb2ced558633", + "sha256": "fb2ced558633e75f3e6bd15021c9de423b9993a4c5ee782670bc5a1ff4b0f473", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-board-ratifying-consent/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11505, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 44, + "runs": 63, + "tables": 2, + "rows": 8, + "cells": 16, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/5d7958306baa", + "sha256": "5d7958306baa2bdee23a12685279ebd9459bbaeeb76f0130b9952c6ff0fd0ae5", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-confidentiality-invention-assignment-agreement/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15201, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 93, + "runs": 88, + "tables": 3, + "rows": 17, + "cells": 34, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/7b4fe542be7c", + "sha256": "7b4fe542be7cf386d04bd3293c154065d413504f93751594fd322f207629e3ec", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-confidentiality-invention-assignment-agreement/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15057, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 93, + "runs": 88, + "tables": 3, + "rows": 17, + "cells": 34, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/414fcccf328f", + "sha256": "414fcccf328f41e910289da3a66bdb9caafe72030fc46303ab0b40c291182758", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-due-diligence-request-list/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16507, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 170, + "runs": 225, + "tables": 1, + "rows": 8, + "cells": 16, + "sections": 2 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 2, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-agreements/1179496d1e0e", + "sha256": "1179496d1e0e3bcaec6fc30b6d579831dff895d1db4cf539105b05f6d9196464", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-due-diligence-request-list/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16527, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 178, + "runs": 235, + "tables": 1, + "rows": 8, + "cells": 16, + "sections": 2 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 2, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-agreements/ed9109fa2e72", + "sha256": "ed9109fa2e7234f803aaec528c4742a34fbc5dc29994837aaf169082f14ce645", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-employment-offer-letter/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 12556, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 84, + "runs": 77, + "tables": 3, + "rows": 20, + "cells": 40, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/85c3b17d489b", + "sha256": "85c3b17d489be82634da06724f4550d64bdd4549b3ee59ec1a916e6754dbf49c", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-employment-offer-letter/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 12521, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 86, + "runs": 83, + "tables": 3, + "rows": 20, + "cells": 40, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/a0ee5b7cc19f", + "sha256": "a0ee5b7cc19ffb4e2c385f1ab95411eca27b01a35e6ea42975f267f50acd3715", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-ip-confidentiality-confirmation/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11562, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 42, + "runs": 46, + "tables": 3, + "rows": 12, + "cells": 24, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/cd2583e03f77", + "sha256": "cd2583e03f77e8434fe0293b93a6444ee79794a38ac62e955ab85ec0173a6bde", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-ip-confidentiality-confirmation/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11468, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 42, + "runs": 46, + "tables": 3, + "rows": 12, + "cells": 24, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/03dadc85c3f5", + "sha256": "03dadc85c3f5b0c48900657b718ae0e20b45406c51996ab63345c885189ebd40", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-board-consent/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 13169, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 52, + "runs": 93, + "tables": 2, + "rows": 8, + "cells": 16, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/40f235614bcd", + "sha256": "40f235614bcd6bcc20ecb36224bcadfb55b4661e42871e483a575cd4fda60cc2", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-board-consent/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 12993, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 53, + "runs": 95, + "tables": 2, + "rows": 8, + "cells": 16, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/7b5115a5dcfe", + "sha256": "7b5115a5dcfed2b6a6946442771aeae5aad0fbc64ad40d83aebf6e41ac37fc9e", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-cap-table-update-instructions/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11802, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 52, + "tables": 2, + "rows": 11, + "cells": 22, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/afe97280910e", + "sha256": "afe97280910ed4b6f7db0d2408c9969674b8bd9e0424ab1398627a1f0f05ec15", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-cap-table-update-instructions/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11641, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 52, + "tables": 2, + "rows": 11, + "cells": 22, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/22f62ae81f19", + "sha256": "22f62ae81f19e721868d28196bb0f2bdb4b7165d74cdce2ff3b1e50039a4534c", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-records-checklist/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11984, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 54, + "tables": 2, + "rows": 9, + "cells": 18, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/01c01f0e442e", + "sha256": "01c01f0e442e7680969638d7a2e0e1407a82dc5f1c75ede209c232ab5a4080e8", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-records-checklist/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11864, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 54, + "tables": 2, + "rows": 9, + "cells": 18, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/2d7fd68d8ed7", + "sha256": "2d7fd68d8ed7267879ff609af9405be30831ce738266b674ddbd4000cdc7b897", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-resignation-letter/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11152, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 33, + "runs": 37, + "tables": 2, + "rows": 7, + "cells": 14, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/00536eda0db0", + "sha256": "00536eda0db0838bb7934226a71204c4cf1478ccf2826cd2bd6d312c315f1f73", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-resignation-letter/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11043, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 33, + "runs": 37, + "tables": 2, + "rows": 7, + "cells": 14, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/b8886280df2c", + "sha256": "b8886280df2c1c9b6e10e4f123d66c2f3b4ef99de7caca690aea673be89c9168", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-stockholder-consent/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 12070, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 42, + "runs": 63, + "tables": 2, + "rows": 8, + "cells": 16, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/bedc27467c86", + "sha256": "bedc27467c8696992305cb89b92525dadeaa814f906ea4023c655bce8952d9b4", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-separation-stockholder-consent/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 12003, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 43, + "runs": 65, + "tables": 2, + "rows": 8, + "cells": 16, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/47c580981c1b", + "sha256": "47c580981c1b35fa8d1d5b4dec00098d7250651411d80add13bf995649b0ca0d", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-share-repurchase-notice/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11817, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 55, + "runs": 66, + "tables": 3, + "rows": 17, + "cells": 34, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/124928412b50", + "sha256": "124928412b50023cff656149658faa8c9a1719b0f5333c5455075047e1bf5c9e", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-share-repurchase-notice/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11616, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 55, + "runs": 66, + "tables": 3, + "rows": 17, + "cells": 34, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/42bf1c9ae532", + "sha256": "42bf1c9ae5328d8202ec02c344854776cc7ecbecc9443d61a47915ad0dbc9eee", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-stock-assignment-separate/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 10841, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 28, + "runs": 36, + "tables": 2, + "rows": 7, + "cells": 14, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/06178bda7aef", + "sha256": "06178bda7aeff362921d4922c95d19a4fd2d0757e4908d0b5e0e1be8fef7c26a", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-stock-assignment-separate/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 10727, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 28, + "runs": 36, + "tables": 2, + "rows": 7, + "cells": 14, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/6e97cd4705e7", + "sha256": "6e97cd4705e7ee3272be31c770e8ca1eae16d3f629bdbcd50d723db32d2ac7e0", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-stock-repurchase-agreement/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 13383, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 62, + "runs": 82, + "tables": 3, + "rows": 17, + "cells": 34, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/29c595e2c99c", + "sha256": "29c595e2c99c18c340e393e01c31101e3dbc2bf6992495478f9ccac68702c2ec", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-founder-stock-repurchase-agreement/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 13238, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 64, + "runs": 86, + "tables": 3, + "rows": 17, + "cells": 34, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/d1c694121183", + "sha256": "d1c6941211830ab657d0c1d92c26c04e7fbe0ecfa85237a0f330a344328dae39", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-alabama/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18136, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 131, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/a1d11f34f935", + "sha256": "a1d11f34f9355face4f830d90e107c4c05b5d5f4c1da6acca71fd38cd3923e21", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-alabama/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18231, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 171, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/ee08c2a67763", + "sha256": "ee08c2a677638e0176de60092499604f3adeeba1866bfdb0ff515ba212c262de", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-alaska/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18186, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 124, + "runs": 133, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/e0a8aa60f9d5", + "sha256": "e0a8aa60f9d51a638fe4fb3b24f90f99031816f645c1833397115dcce6b76b8a", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-alaska/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18343, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 136, + "runs": 173, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/71feacdec114", + "sha256": "71feacdec1141cc919a264552bfbcac790571d79095b04bcf12600b38f1802f3", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-arizona/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15359, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 131, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/6e3c5aeac0a2", + "sha256": "6e3c5aeac0a2795d9a64966892af92ff8a5c439d257b01334dd86c5797d8f811", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-arizona/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15474, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 169, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/5c52170f2a37", + "sha256": "5c52170f2a370c2b07e1f92c49ab1a4cba2edf713d959e1e6f201cb78322ca37", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-arkansas/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17161, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 131, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/5569b4b2f02f", + "sha256": "5569b4b2f02f2a8dd1d4439d9c43bea25704fe866fcfdfb21253437a474f693e", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-arkansas/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17240, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 169, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/7315591107af", + "sha256": "7315591107af0efd0936538f27cf51e6a87138c0176b00145aa5f0de178b46d1", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-california/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 13166, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 75, + "runs": 72, + "tables": 3, + "rows": 18, + "cells": 34, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/9279ca6b717c", + "sha256": "9279ca6b717c07e6192ac96be4ecea031beadd525b0f7af3550becb20e9331f3", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-california/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 13176, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 75, + "runs": 74, + "tables": 3, + "rows": 18, + "cells": 34, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/66c50ab4379c", + "sha256": "66c50ab4379c0b991c0293d6588d2d9934a81825da08f58e0ca8b6673df7b499", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-colorado/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18081, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 141, + "tables": 3, + "rows": 35, + "cells": 62, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/8dd33c2e11f3", + "sha256": "8dd33c2e11f3265648e7a0ede7955701ec02826a2146a5b5575023dcffa27a38", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-colorado/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18046, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 142, + "runs": 179, + "tables": 3, + "rows": 35, + "cells": 62, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/4aa1d8f20cf6", + "sha256": "4aa1d8f20cf6ee73dac53e677a5c5aaed33f381102a4fdf4a3b783c196887051", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-connecticut/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 19702, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 125, + "runs": 171, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/eb995a9308a1", + "sha256": "eb995a9308a19f133531432af8f5d595b813c39d8590b5ea2e23134cd39a4245", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-connecticut/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 19698, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 135, + "runs": 209, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/e80579147131", + "sha256": "e805791471316172c391319d19c2accf674073e41f43c322039c4660f25009f4", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-delaware/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 19109, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 131, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/712bd98a67cd", + "sha256": "712bd98a67cd83aca32e0530b8c043d683bf1b32d7c06137d693386409629f9e", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-delaware/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 19245, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 134, + "runs": 171, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/3984309a93d3", + "sha256": "3984309a93d35310db16e5eaa9a64e10994ae50ebf9d04819a1e505d9eeb93be", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-district-of-columbia/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18634, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 125, + "runs": 133, + "tables": 3, + "rows": 31, + "cells": 56, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/2650ffdd9d51", + "sha256": "2650ffdd9d51f4c6fa5c228ac14937c22155e50cee719216d3a5ad87bc028df3", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-district-of-columbia/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18568, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 133, + "runs": 161, + "tables": 3, + "rows": 31, + "cells": 56, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/8161ec006899", + "sha256": "8161ec006899681a2bf214f19a44b6424ad201391b7b6516fef0ded7f269f1cc", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-florida/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16979, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 135, + "runs": 148, + "tables": 3, + "rows": 35, + "cells": 62, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/a3683e12c8f9", + "sha256": "a3683e12c8f9de2d138a20230ad509ab5db77637125f9eb56cbda51bf04fce14", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-florida/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17131, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 145, + "runs": 190, + "tables": 3, + "rows": 35, + "cells": 62, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/4f609f7432e1", + "sha256": "4f609f7432e1f394ed08e1d22efbc97ae1e038864c9218fa9e285c621d076fb2", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-georgia/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17103, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 120, + "runs": 133, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/d8ba13244642", + "sha256": "d8ba132446422c7ac25a411a725fb2bc36806e8728e023bc03bf852459ea384a", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-georgia/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17134, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 171, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/38cc62d614cc", + "sha256": "38cc62d614ccd98441b9a4d6175478ad63a6c4110ddff6a36abcc37f4f92323f", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-hawaii/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16706, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 127, + "runs": 136, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/d72d05e8714f", + "sha256": "d72d05e8714ff33952a114b3c6e510955c433ceca8e0f87eb4f0f21d233296d7", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-hawaii/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16855, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 139, + "runs": 176, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/4aa74cc01b2b", + "sha256": "4aa74cc01b2bc2622120526477716b1953bc37d72d88f41765c6bb714b3f284c", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-idaho/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17869, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 127, + "runs": 138, + "tables": 3, + "rows": 36, + "cells": 64, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/89ffdd7bd7bc", + "sha256": "89ffdd7bd7bc79bcd9f2bac2fad5c7e5b0fa9c7a681ce25e9b03c3af31d8333e", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-idaho/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17961, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 139, + "runs": 184, + "tables": 3, + "rows": 36, + "cells": 64, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/002f43a84958", + "sha256": "002f43a849584ad8d8d63a424179b15e8a65bffbc494f993a369f4abc68dd33c", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-illinois/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16450, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 121, + "runs": 132, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/aa5f1a3b1281", + "sha256": "aa5f1a3b1281d58851e72ebf8424c19b4c16dfbcb634768efd33cb8b3f3df5f9", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-illinois/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16536, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 131, + "runs": 170, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/734f11148b6b", + "sha256": "734f11148b6b5ad572ad4466931965a2360c9850b164607b22198953217a6544", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-indiana/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17900, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 134, + "runs": 143, + "tables": 3, + "rows": 36, + "cells": 64, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/98853ed12c50", + "sha256": "98853ed12c50a90c678ac1ae3811b00e1ebaf7a2650f8f7f29061f258b2c5279", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-indiana/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17974, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 146, + "runs": 193, + "tables": 3, + "rows": 36, + "cells": 64, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/3f7acf61f767", + "sha256": "3f7acf61f7672bfea6bca7fa348c8d83d552689565e7fade6cd3375668e9bcda", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-iowa/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16197, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 120, + "runs": 129, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/0fcae794bbb3", + "sha256": "0fcae794bbb3c7333231ff3121df5efe8f9628ac6db902a17a745b0a43640e76", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-iowa/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16320, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 167, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/45d11046e00b", + "sha256": "45d11046e00b11bd405750c8ff63144f4850b050f5b7deb09be7f0d96ba048fe", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-kansas/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18571, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 120, + "runs": 129, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/5ec2c6f4dea7", + "sha256": "5ec2c6f4dea7f13892c9232cb6511c1e18f2900e72c3bad2577b5cf5761766c9", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-kansas/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18694, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 167, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/58bc000412a5", + "sha256": "58bc000412a5df808118c21cf7963dce45fd644bddcd1113a34c3fd17a587c0a", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-kentucky/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18520, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 125, + "runs": 134, + "tables": 3, + "rows": 34, + "cells": 60, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/b5937d931393", + "sha256": "b5937d931393cb8d38d7948aadf29376fc9709f6dacd008e401656a529d0b7e1", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-kentucky/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18704, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 135, + "runs": 174, + "tables": 3, + "rows": 34, + "cells": 60, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/aef40cff9c82", + "sha256": "aef40cff9c824cd005c88a78d398c65dcabd4d97c1f5c39d626d17e05e049d33", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-louisiana/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17406, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 123, + "runs": 132, + "tables": 3, + "rows": 32, + "cells": 56, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/133fe415e816", + "sha256": "133fe415e816619bca4d1b87c728c9f3fb21160bec22ef714ac3af95a9246f93", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-louisiana/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17260, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 137, + "runs": 172, + "tables": 3, + "rows": 32, + "cells": 56, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/bf0318ea6421", + "sha256": "bf0318ea64215be1f27911f2c2bad44f8e6db60758daee323194cd421946078b", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-maine/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18725, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 133, + "runs": 142, + "tables": 3, + "rows": 37, + "cells": 66, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/22bc5a2698b8", + "sha256": "22bc5a2698b82fab96ae57ac2908ca1bff96a66fae57f7791be071fc062a718b", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-maine/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18558, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 143, + "runs": 180, + "tables": 3, + "rows": 37, + "cells": 66, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/063b31f71b85", + "sha256": "063b31f71b858d8619f28248ff2eebdda8b9b2667e553239eeacd49a7391a534", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-maryland/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17580, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 135, + "runs": 144, + "tables": 3, + "rows": 35, + "cells": 62, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/9b4510b52156", + "sha256": "9b4510b52156da786cc38ba899dfb08bec415367bcbbfc53cf773eb3348ca0fa", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-maryland/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17556, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 147, + "runs": 188, + "tables": 3, + "rows": 35, + "cells": 62, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/ed135316d52b", + "sha256": "ed135316d52b1a003463408a71e58c25faa1d72ea636bc43a7b8847361e713ff", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-massachusetts/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17174, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 127, + "runs": 136, + "tables": 3, + "rows": 33, + "cells": 58, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/c665f354cecc", + "sha256": "c665f354cecc8c7aedb03a33d99e82b1ee057c42686ff26b129bb73ad87d88ba", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-massachusetts/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17276, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 141, + "runs": 182, + "tables": 3, + "rows": 33, + "cells": 58, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/509df37841da", + "sha256": "509df37841da7fd6768f7e7e075557a5d794ae65d8963562afa8ad314133cde7", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-michigan/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16301, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 133, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/8f29caf4434c", + "sha256": "8f29caf4434c2562567ab677bbc1565fae7bcddf7c0dd34aa66ab66c87d1272d", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-michigan/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16372, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 171, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/031650f3d029", + "sha256": "031650f3d0291598925ec83ec6bf93deeaa5b7b222004a859de0568d1b84a821", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-minnesota/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15083, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 94, + "runs": 98, + "tables": 3, + "rows": 25, + "cells": 46, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/cfb8f37b9ed9", + "sha256": "cfb8f37b9ed970d09b22f3d9b58d6109a6124f41ede600da7092625dab0510b3", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-minnesota/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15036, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 94, + "runs": 100, + "tables": 3, + "rows": 25, + "cells": 46, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/93ce3c7cc044", + "sha256": "93ce3c7cc0440cd92d3f68b9bbd6c3eabb934bfbcdc72f6fa3beeff2985e0fe1", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-mississippi/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15606, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 124, + "runs": 133, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/e351b40f262a", + "sha256": "e351b40f262acc9fa7312e06b546619130edba20dc18b66d11bc6360d805715d", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-mississippi/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15759, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 134, + "runs": 171, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/9013afff2220", + "sha256": "9013afff2220131794be87035433ac11c7faee1037c012bd248a4e3adee1fe0e", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-missouri/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15739, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 133, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/a4a6454e74e3", + "sha256": "a4a6454e74e332396169729c7726bb1fc542c1e0d9315257fb7e406d0a87edb6", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-missouri/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15849, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 171, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/cf95bcdd7718", + "sha256": "cf95bcdd77187a1d5bc0e0128c12810ca565c859bed14b1e04aa166c8015c569", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-montana/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 18991, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 131, + "runs": 142, + "tables": 3, + "rows": 35, + "cells": 62, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/3ede37eea23a", + "sha256": "3ede37eea23a07add1a85290e20596f550d25b8a864fa4f7ec55e230086abcb6", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-montana/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 19078, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 141, + "runs": 184, + "tables": 3, + "rows": 35, + "cells": 62, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/15a77635d5b5", + "sha256": "15a77635d5b515ec3cd90af3a8a36c53ac4d9bf674b20b972278b28925e9612d", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-nebraska/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16549, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 121, + "runs": 129, + "tables": 3, + "rows": 33, + "cells": 59, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/54256788f6d3", + "sha256": "54256788f6d3397296a1bb4e73bd4b34310950a1f13a1f23e5f9842dfa4722f5", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-nebraska/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16494, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 131, + "runs": 171, + "tables": 3, + "rows": 33, + "cells": 59, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/d01831f0bfb8", + "sha256": "d01831f0bfb8f25266e19cee92c82d95cd714f0fba2b5d65b76d6fd84d4889fc", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-nevada/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17569, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 121, + "runs": 132, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/914a3bd1277f", + "sha256": "914a3bd1277fa0391fd322cdbc5b381fa6d8bb3613c3dde4fc41e57449cfb270", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-nevada/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17650, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 131, + "runs": 170, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/bca0b01142d1", + "sha256": "bca0b01142d16d3b9002a5fbe7eeac2aa94ff540dc16f12268cbff6b56d62e9a", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-new-hampshire/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16257, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 133, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/6caea402fe0e", + "sha256": "6caea402fe0e2d1adfa595f005a7fb86c8b7941ef4efb3779fd3d998e97caee6", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-new-hampshire/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16316, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 171, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/345f65d38bd9", + "sha256": "345f65d38bd9dc9d054e7851781a3d126f0d8ba0a548de4357475f1e9b91a9d1", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-new-jersey/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16745, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 126, + "runs": 135, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/9f6407e62322", + "sha256": "9f6407e62322ac67edc65bd7970eab38820e816c4de404516866a06142c7a9ff", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-new-jersey/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16880, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 136, + "runs": 173, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/6c499a780d70", + "sha256": "6c499a780d704cc1217cd8beb85b8432002bbf3f1c7d8c48a28ff5c8969fd72b", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-new-mexico/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17693, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 131, + "runs": 140, + "tables": 3, + "rows": 36, + "cells": 65, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/cc4eea43afdf", + "sha256": "cc4eea43afdf0f62a9a73e06f680c48370797b76e45b69516f750e3d57ff1097", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-new-mexico/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17628, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 141, + "runs": 182, + "tables": 3, + "rows": 36, + "cells": 65, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/ed37c00cdef4", + "sha256": "ed37c00cdef433890bac5420d67f6362f8bf0992d491c8e33153dccf223050b1", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-new-york/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15785, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 131, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/0647462146f5", + "sha256": "0647462146f5d4584e3a9b06933f1c8899f39a74a5a359c6e4ed9789b516ad12", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-new-york/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15928, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 169, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/36b5883f8622", + "sha256": "36b5883f86220f191fae263c7a504852ab8e5dadbca85c144f41446117dfe974", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-north-carolina/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16577, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 128, + "runs": 137, + "tables": 3, + "rows": 35, + "cells": 63, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/0df24668e832", + "sha256": "0df24668e83214cb676711a5868f2769c017ab4282c5a6b636dc1be75c8fa346", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-north-carolina/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16686, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 138, + "runs": 183, + "tables": 3, + "rows": 35, + "cells": 63, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/b0f6a97eb353", + "sha256": "b0f6a97eb353ab824fc0782c50951c64df3a8be6eeca30836c789f1b0fd235cc", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-north-dakota/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15543, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 86, + "runs": 93, + "tables": 3, + "rows": 22, + "cells": 41, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/f2bf4ec590b1", + "sha256": "f2bf4ec590b11d7ec15ba0b1b676a538daa90913f31d246dcfdfeb1ec5acbad3", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-north-dakota/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15432, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 86, + "runs": 95, + "tables": 3, + "rows": 22, + "cells": 41, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/0267792feb4d", + "sha256": "0267792feb4d846eef0757692e294e8a5a1879d82c1ef752cbaba38145aa3912", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-ohio/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17444, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 120, + "runs": 129, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/47d1c729ed39", + "sha256": "47d1c729ed397b67b92c877f288a37398ca5506e4224770a9b7b8442b7dbe16c", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-ohio/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17586, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 167, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/53da8c62b817", + "sha256": "53da8c62b817832a2db362a34c9783a8f16bbc06664a3ae444469d3cec9a8f01", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-oklahoma/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16059, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 95, + "runs": 100, + "tables": 3, + "rows": 25, + "cells": 46, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/a8279222b693", + "sha256": "a8279222b69377451f38725f4537d1e60a589681ca4490b410934428763e7732", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-oklahoma/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15936, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 95, + "runs": 102, + "tables": 3, + "rows": 25, + "cells": 46, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/25383ca98f3a", + "sha256": "25383ca98f3ad199773f743a562ad5f5bb9eb2f10f810c2b7b632e6c4fe39941", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-oregon/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17795, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 124, + "runs": 135, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/613d428b7cb0", + "sha256": "613d428b7cb08a46ae79778fcd3c474f926a46d7b552eddb7ac58d829e0bf954", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-oregon/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17823, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 136, + "runs": 177, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/18cfc20acd2b", + "sha256": "18cfc20acd2b4c88a75b238f9a5a4736c5e950638483ff71e0c615ec5f2b4c7e", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-pennsylvania/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15970, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 131, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/f0967caa0d1a", + "sha256": "f0967caa0d1af8f0c700de47974b79dd8096a9a73607953cbb2d70e4a07b22d7", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-pennsylvania/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16135, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 132, + "runs": 171, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/12b039e75d11", + "sha256": "12b039e75d11babbb5d2afd61922e5f0b781fd7239a40e10b7a2021672c18efa", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-rhode-island/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16555, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 139, + "tables": 3, + "rows": 37, + "cells": 65, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/b408d45b23e4", + "sha256": "b408d45b23e44f618ec0adcc9a8edfdc46cc78b5e817783afce25587cd416bd1", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-rhode-island/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16480, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 140, + "runs": 181, + "tables": 3, + "rows": 37, + "cells": 65, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/0954881f16c2", + "sha256": "0954881f16c263234b0a506aa8b2a4dcf8b98a8ca77f240ab8c6b725af180182", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-south-carolina/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15655, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 139, + "tables": 3, + "rows": 36, + "cells": 64, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/dbcd944d9338", + "sha256": "dbcd944d93386808c1abe526b01644059e74ab2324d4bce44256ab7150751ffd", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-south-carolina/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15806, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 140, + "runs": 183, + "tables": 3, + "rows": 36, + "cells": 64, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/a373477362d3", + "sha256": "a373477362d3f844a2b752694b3aa9bcd1ad91b924af043e89af1b60afb8d880", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-south-dakota/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17221, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 121, + "runs": 130, + "tables": 3, + "rows": 32, + "cells": 58, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/54cc8c9ac28b", + "sha256": "54cc8c9ac28b91715a8abc7a9115b3581573f23953979a036e699a75aac8a719", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-south-dakota/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17290, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 129, + "runs": 168, + "tables": 3, + "rows": 32, + "cells": 58, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/928438d70a16", + "sha256": "928438d70a16b85c51eba3775945442fbc43607110d269c58f6c0942d6af7012", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-tennessee/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16713, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 131, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/cb14c57db77a", + "sha256": "cb14c57db77aba24f253ebee3ef04e612b312acc4cfd2a6b0ca46d791301f523", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-tennessee/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16894, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 134, + "runs": 171, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/2cbd6cffdd7f", + "sha256": "2cbd6cffdd7f9d8e475442d5745ed3eed04ec9dea547345a3dcd90f5e91e1192", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-texas/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16379, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 120, + "runs": 129, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/29f6984b4c33", + "sha256": "29f6984b4c33aa2af342915aee2558412b8abb3c7c7f3aacc3b47c331b5accf5", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-texas/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16497, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 167, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/b91bbc2a6a10", + "sha256": "b91bbc2a6a10dd70222d5f23c42d99dfaa398e28eabcfb47ebfad3657485d7a3", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-utah/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16775, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 114, + "runs": 123, + "tables": 3, + "rows": 30, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/314c8da250d8", + "sha256": "314c8da250d89ed439e4c2365e30ab151f20e663264b5a30bab315afe52847bf", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-utah/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16837, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 120, + "runs": 155, + "tables": 3, + "rows": 30, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/2205b641516f", + "sha256": "2205b641516f447d8e553715272e7fa56db00b5778b01ea7339f1ff7d24d21c2", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-vermont/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15728, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 120, + "runs": 129, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/311542fdbabd", + "sha256": "311542fdbabd348efdfe685639463f38e30b53615dcf144074dfe73bb0b89c46", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-vermont/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15865, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 167, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/15298698bbaa", + "sha256": "15298698bbaa25a54f46fbd9fa6f90158e39fa5cad5fbdb3e232d00132dba8d6", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-virginia/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16138, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 138, + "runs": 147, + "tables": 3, + "rows": 35, + "cells": 63, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/9921f6e65386", + "sha256": "9921f6e65386e1eef48eb132cc3a6b04d4658f3c3dedebf30189346017aafe7a", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-virginia/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 16289, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 154, + "runs": 199, + "tables": 3, + "rows": 35, + "cells": 63, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/d96646e0d665", + "sha256": "d96646e0d665c43ce8ff3c9d0b464c41c098fa58889d7951add4e9fd1f48e3c7", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-washington/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17953, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 131, + "runs": 151, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/bc1eca6a4e30", + "sha256": "bc1eca6a4e30fe21c4495ce3cbf6e86ca8a2c30dca53778f0bdcfa46637f99d4", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-washington/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17977, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 143, + "runs": 193, + "tables": 3, + "rows": 32, + "cells": 57, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/700b693d3f54", + "sha256": "700b693d3f543a5dc6d9c65c202fefde51d1c0cf7823882078684044638703b7", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-west-virginia/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15732, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 139, + "tables": 3, + "rows": 36, + "cells": 65, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/646d4bb54fb3", + "sha256": "646d4bb54fb35e4ebed83260b6c7e816cf11ebcb8b2aac0d2fd733abcd10d970", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-west-virginia/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 15894, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 140, + "runs": 187, + "tables": 3, + "rows": 36, + "cells": 65, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/27923570c227", + "sha256": "27923570c22723b2a6195a93f5025a3f016a105187952924618124ae4d27207c", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-wisconsin/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17497, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 126, + "runs": 135, + "tables": 3, + "rows": 34, + "cells": 61, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/10764987d170", + "sha256": "10764987d170ac62f04cbd648f4a0a1fca48d9f8fe2ee557bae385bab8f9dd17", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-wisconsin/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 17626, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 136, + "runs": 179, + "tables": 3, + "rows": 34, + "cells": 61, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/4fc46e3592f6", + "sha256": "4fc46e3592f6e431518558017738215a9e28cf3dbeb0925c710fb4045a625abe", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-wyoming/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 14610, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 116, + "runs": 125, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/474379db3339", + "sha256": "474379db3339dfb91187cfad50af88d790525cc0b5d4615483da8739b5f47b6b", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-restrictive-covenant-wyoming/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 14734, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 126, + "runs": 163, + "tables": 3, + "rows": 31, + "cells": 55, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/4058c2c7c9cf", + "sha256": "4058c2c7c9cfe81f46b7d482e28be2864894421244652d0e7a270b96c009f18a", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-stockholder-consent-safe/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11144, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 25, + "runs": 31, + "tables": 1, + "rows": 3, + "cells": 6, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/8d42d9446ed3", + "sha256": "8d42d9446ed3f34ea31c07b8bf8cdb77d06f2e73c823310df368dc69aeec8dc0", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-stockholder-consent-safe/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11133, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 26, + "runs": 33, + "tables": 1, + "rows": 3, + "cells": 6, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/ce498a0025dd", + "sha256": "ce498a0025ddf4676cb30454b09a92e8eef324ca7ba532a504a90a339d8ef512", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-stockholder-ratifying-consent/template.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11353, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 36, + "runs": 45, + "tables": 2, + "rows": 8, + "cells": 16, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-agreements/4216e8b823c3", + "sha256": "4216e8b823c351f73e407d4a7c0484022a3900a55dc94064cc50bd8ba161e508", + "url": "https://raw.githubusercontent.com/open-agreements/open-agreements/9ac333e28d8b5b006d112ef80eae5acf4c1c46ef/templates/openagreements-cc-by-4.0/openagreements-stockholder-ratifying-consent/template.fill.docx", + "source": "open-agreements", + "license": "CC-BY-4.0", + "bytes": 11232, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 37, + "runs": 47, + "tables": 2, + "rows": 8, + "cells": 16, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": false, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/45bc9ead8d72", + "sha256": "45bc9ead8d72f551c0f045df38dc6c0a9bc2ac2140a79dd94d836b6fc797a991", + "url": "docx-platform-tests:scenarios/comments/addCommentBracketsRangeWithMatchingIds/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 950, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/fb6e0a7f8dd9", + "sha256": "fb6e0a7f8dd9675d55c7aceccdbc3ed1c8cc238e62ed97e8cd4d133c553f7154", + "url": "docx-platform-tests:scenarios/comments/commentPartRecordsAuthorInitialsAndText/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 947, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/60161cd34d23", + "sha256": "60161cd34d2344d52d8fd91683c254c361d0c94508edafbbe5fb989ef7e8b54d", + "url": "docx-platform-tests:scenarios/comments/removeAllCommentsStripsAnchorsKeepsText/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1615, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 1, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/039eb7c20970", + "sha256": "039eb7c20970953f36a4ca1f46842c25818ccd4c145da1a4e033e53d757fc60c", + "url": "docx-platform-tests:scenarios/find-replace/replaceFirstOccurrencePreservesOffsets/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 947, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/b55baec9b476", + "sha256": "b55baec9b476f473b4f749f2bd3528119d5ce4dddcef4355526130dbe6037671", + "url": "docx-platform-tests:scenarios/find-replace/replaceTextAcrossRunBoundary/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 962, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/988057a7827b", + "sha256": "988057a7827bdacc8a93c7cc9b78702ad7651b5c33604bad528c8c7a92080320", + "url": "docx-platform-tests:scenarios/generation/appendParagraphPreservesExistingContent/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 935, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/f3f153997a2c", + "sha256": "f3f153997a2c69b2e2cd85ff85a4fbf242dbb603905abb68e5d3d122545749b0", + "url": "docx-platform-tests:scenarios/generation/composeFormattedRunCarriesBoldItalicSize/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 901, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 0, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/cfa286e35017", + "sha256": "cfa286e3501706d30ee9a9819e831d01f29b27e944c98683497ab86ba2ad7e4c", + "url": "docx-platform-tests:scenarios/generation/insertParagraphAfterAnchorShiftsSubsequent/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 942, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/017847f1cfd9", + "sha256": "017847f1cfd985722fa6deaef106e6e11f4e52ccaee32965c271dfc06384f3fb", + "url": "docx-platform-tests:scenarios/styles-numbering/applyNamedParagraphStyleSetsPStyleReference/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1535, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 1, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/06a3b82a6892", + "sha256": "06a3b82a6892bdf5087a3ea8f8283906d50569af95ce27957b7dc17943f6de80", + "url": "docx-platform-tests:scenarios/styles-numbering/applyNumberingToParagraphAttachesNumPr/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1579, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 1, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/27c5af14c65d", + "sha256": "27c5af14c65dd1b6048b3bf1794372ee991886888ebb5939de30ebd12f477f8c", + "url": "docx-platform-tests:scenarios/styles-numbering/directFormattingDoesNotBakeIntoStyleDefinition/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1557, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 1, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/2986d80cf4a0", + "sha256": "2986d80cf4a063421ae25e4ea0920df2a46c35647ce7f9d7890965e04c5798c6", + "url": "docx-platform-tests:scenarios/styles-numbering/setDefaultFooterTextAddsFooterReference/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 931, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/7d4009989d53", + "sha256": "7d4009989d537a1d4c713a3cf88b7125e7e8bd6153864b0e30775a9e9ee5baf3", + "url": "docx-platform-tests:scenarios/tables/appendTableRowExtendsRowCountKeepingGrid/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 970, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 2, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/6bac3666444a", + "sha256": "6bac3666444a1759da65943d39aa4dd567604bb58e0060e3d35df489a6b9b16f", + "url": "docx-platform-tests:scenarios/tables/deleteTableRowRemovesRowAndContent/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 971, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 3, + "runs": 3, + "tables": 1, + "rows": 3, + "cells": 3, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/2bc3c41182ff", + "sha256": "2bc3c41182ff0b2010b7123bbe61b1fbae2356a769a7ca81493bb23674fb8b68", + "url": "docx-platform-tests:scenarios/tables/horizontalMergeSetsGridSpanKeepingGrid/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 989, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 3, + "runs": 3, + "tables": 1, + "rows": 1, + "cells": 3, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/b2e96c953eec", + "sha256": "b2e96c953eec7c27b0c22a1232a0326a3f0324ef6a55c2a9943d85d858553167", + "url": "docx-platform-tests:scenarios/tables/replaceTextInsideTableCellPreservesStructure/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 977, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 2, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/2443301343bf", + "sha256": "2443301343bfb9be1c591ff0a54d4318a0e57034683de98cc59c2ea30c069e4d", + "url": "docx-platform-tests:scenarios/tables/setTableCellTextReplacesCellContentOnly/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 966, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 2, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/80986ab79d88", + "sha256": "80986ab79d88ab49478f75fb4dc9c47c0dd01a0204bbd8f2d90c975490c4d128", + "url": "docx-platform-tests:scenarios/tracked-changes/acceptDeletedParagraphMarkMergesParagraphs/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1022, + "strata": [ + "tracked-changes" + ], + "features": { + "ins": 0, + "del": 1, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/2a3a8dc11af8", + "sha256": "2a3a8dc11af8a1dd2f516b248887cb46baf2b419bf079ace9baa4a72f3eb9269", + "url": "docx-platform-tests:scenarios/tracked-changes/acceptDeletedTableRowRemovesEntireRow/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1121, + "strata": [ + "tracked-changes", + "tables" + ], + "features": { + "ins": 0, + "del": 2, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 1, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 3, + "runs": 2, + "tables": 1, + "rows": 2, + "cells": 2, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/c3389854f797", + "sha256": "c3389854f7975498d4a7af5afa748234d2750d99e42efbe6664c42a4631e5ab0", + "url": "docx-platform-tests:scenarios/tracked-changes/acceptDeletionsRemovesDelContent/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1022, + "strata": [ + "tracked-changes" + ], + "features": { + "ins": 0, + "del": 1, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/bc26ed2d3d37", + "sha256": "bc26ed2d3d3729ef5e0a98e3566ce87af62a4b7a88215f29e60c5bf67694b4ba", + "url": "docx-platform-tests:scenarios/tracked-changes/acceptFormattingChangeKeepsNewRunProperties/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1020, + "strata": [ + "tracked-changes" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 1, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/2e892a7371e3", + "sha256": "2e892a7371e3467da1c5f9aa4ef47872bbcb2130f725bf7973bc2cd718208b49", + "url": "docx-platform-tests:scenarios/tracked-changes/acceptInsertionsUnwrapsInsWrappers/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1018, + "strata": [ + "tracked-changes" + ], + "features": { + "ins": 1, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/af17ce478600", + "sha256": "af17ce4786006d29e60ea98836baedb927d007f2a62184250f99de4e62f26be1", + "url": "docx-platform-tests:scenarios/tracked-changes/acceptMoveRemovesSourceAndUnwrapsDestination/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1081, + "strata": [ + "tracked-changes", + "moves" + ], + "features": { + "ins": 0, + "del": 0, + "move": 2, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 4, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/ff0c6ad54503", + "sha256": "ff0c6ad545038243b1dc24e842976f274ea7ede2e4b5799c64746398cb55ab58", + "url": "docx-platform-tests:scenarios/tracked-changes/acceptNestedDeletionInsideInsertion/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1058, + "strata": [ + "tracked-changes" + ], + "features": { + "ins": 1, + "del": 1, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 4, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 2, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/fdcb3b79bfb8", + "sha256": "fdcb3b79bfb881d6f1fa57bb8212a6e769d5ba912fbdd383ac323e38d934fb8d", + "url": "docx-platform-tests:scenarios/tracked-changes/rejectFormattingChangeRestoresPriorRunProperties/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1020, + "strata": [ + "tracked-changes" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 1, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/13a50023e8bf", + "sha256": "13a50023e8bfa3c74795f441561da99e53b41efa3005c40e04980e4dbc3f06a0", + "url": "docx-platform-tests:scenarios/tracked-changes/rejectInsertedParagraphMarkMergesParagraphs/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1021, + "strata": [ + "tracked-changes" + ], + "features": { + "ins": 1, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/a4aef8745c26", + "sha256": "a4aef8745c26adcac1115295ce5af563fc814e2fab51015643758cf5391d4c72", + "url": "docx-platform-tests:scenarios/tracked-changes/rejectInsertedTableRowRemovesEntireRow/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1114, + "strata": [ + "tracked-changes", + "tables" + ], + "features": { + "ins": 2, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 1, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 3, + "runs": 2, + "tables": 1, + "rows": 2, + "cells": 2, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "docx-platform-tests/bf716a65c4cf", + "sha256": "bf716a65c4cf50a05c2f05f446164d2fe914e3c53034c4dd86894967a5ab5352", + "url": "docx-platform-tests:scenarios/tracked-changes/rejectParagraphPropertiesChangeRestoresPrior/input.docx@faab6daa2f86cf2eab5ff8c3b59cb6de763d1477", + "source": "docx-platform-tests", + "license": "Apache-2.0", + "bytes": 1019, + "strata": [ + "tracked-changes" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 1, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 0 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": false, + "settings": false, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 0, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/a6aa3203a42e", + "sha256": "a6aa3203a42e2095294e107687bb2c392b3a8cb6bc6cc1b20946960a8e8026d3", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/CommentRangeStart.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15060, + "strata": [ + "comments", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 4, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/ea4c6efdcb68", + "sha256": "ea4c6efdcb680085b030e6242ea95c73f1aedda55872347b286ee04c0dfe6511", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/AbbreviatedCaseNumber-Abbreviated%20Case%20Number.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15407, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/74b2ad2e6e99", + "sha256": "74b2ad2e6e997b119bba795f58b87da1ab3d767d22c4211ad5d31f33abc019d5", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/BookAuthor-Book%20Author.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15449, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/6669adaadccc", + "sha256": "6669adaadcccc3cd362cbc7d6b18792d3f70a1a5272524c2cfb3afe4adb43d68", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/City-City.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15412, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/735ca35a3bb4", + "sha256": "735ca35a3bb45a8ca25ca805b6095e7d45d3f5677ba7933abbaca561ad5b32e6", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/argSz-Argument%20Size%20(Sub-Superscript%20Function%20Superscript)-val--2.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14127, + "strata": [ + "math", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 1, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/90428f8e55a4", + "sha256": "90428f8e55a4494f4c497b6195b351489e194ba3242968f1a905965b89b1e62a", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/bottom-Bottom%20Border-themeColor-dark1.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13879, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/97c05442ae3b", + "sha256": "97c05442ae3bf80133cd69d19f9efc6adac0cc0a0fb5ff8e9b98ac40629eda6a", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/bdr-Text%20Border-themeColor-text1.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13742, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/c5d417794bb0", + "sha256": "c5d417794bb0cbb118b175ae03fc38dc95feef8429f3dc0bca0e44647945aa87", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/bottom-Bottom%20Border-val-holly.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13969, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/dbed5228ee8f", + "sha256": "dbed5228ee8f10b9f167ba7df5a2afa35a54890db5659ba31bee53afa371a3f8", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/bottom-Bottom%20Border-val-zigZagStitch.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13982, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/b97ab6ca4ecb", + "sha256": "b97ab6ca4ecbde55e1b01ff284c4af331e12f733bdb347f9c05277530eb46421", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/bottom-Table%20Cell%20Bottom%20Border-val-double.docx.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14411, + "strata": [ + "tables", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 0, + "tables": 1, + "rows": 2, + "cells": 4, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/e1dff972135e", + "sha256": "e1dff972135e2c530585f5176e5f2391bedd00508c53e0806ebb3fc778344d49", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/clrSchemeMapping-theme%20color-w-bg2-background2-light1.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14063, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/86b577be2f13", + "sha256": "86b577be2f13a86b52b765252dd1b5f32877e7740184d9ec2126f3f46326ec31", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/customXmlDelRangeStart-Custom%20XML%20Markup%20Deletion%20Start-val-author-special-chars.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14631, + "strata": [ + "tracked-changes", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 2, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 6, + "runs": 3, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 1, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/bed13205f92e", + "sha256": "bed13205f92eae1bfc849cec42fe75670e611aa33a99f0583a3a344cb067264f", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/document%20-%20HexColor%20-%20RGB%20-%20Document%20Background.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13918, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/31fb3825565f", + "sha256": "31fb3825565fd534ddd7d3c1552617c673a3301457e9ac63c3ea09ed6c9bab84", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/fldSimple-FormulasAndExpressions-Bookmark-GeneralFormat.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13966, + "strata": [ + "fields", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 2 + }, + "counts": { + "paragraphs": 2, + "runs": 8, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/709e971815d2", + "sha256": "709e971815d22f90508e5e9e413b12dd8b731f68c6cdcccb941c4d45dccdbbdf", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/eastAsianLayout-East%20Asian%20Typography%20Settings-vert-1.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13845, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/087c37054021", + "sha256": "087c3705402124d197829509b11c3d9d2b2159aae7132ab7c760b22585c51a18", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/fldSimple-Field%20Definitions-GreetingLine.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13796, + "strata": [ + "fields", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 5, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/86c616f87880", + "sha256": "86c616f878809d733a341f1337a2be3a8ce71f5555ef6b86964e4a799c0ab7b7", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/instrText-Field%20Definitions-EQ-Array-AlignLeft.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13909, + "strata": [ + "fields", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 3, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/d901a169e50a", + "sha256": "d901a169e50a845403815fb40c65ef76b9e7c501ea5073489d9fba012e8b2fb5", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/highlight-Text%20Highlighting-val-blue.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13934, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/586389407f06", + "sha256": "586389407f068dffed9cc8a345f68560876055b5ed48b52a919d80dac54c56ea", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/insideH-Table%20Inside%20Horizontal%20Edges%20Border-val-thinThickThinSmallGap.docx.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14521, + "strata": [ + "tables", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 10, + "runs": 0, + "tables": 1, + "rows": 3, + "cells": 9, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/684a22354f17", + "sha256": "684a22354f17b735872bf13b0823a4412a75c10ff13f602510895f6708152ba6", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/ftr%20-%20Footer%20-%20bookmarkStart%20-%20Bookmark%20Start.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 19636, + "strata": [ + "headers-footers", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/28dee1799bcd", + "sha256": "28dee1799bcd14b393cbc47ec9a02b186152ceab9b8195371db94094d3795cf4", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/isLgl-Display%20All%20Levels%20Using%20Arabic%20Numerals.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15257, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 11, + "runs": 3, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/1c2e6af89edd", + "sha256": "1c2e6af89edd840dd55e632322f62c1dc744fe529d8368b324c6a6d77e91c70e", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/instrText-Field%20Definitions-NextIf.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13833, + "strata": [ + "fields", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 3, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/9a688482a127", + "sha256": "9a688482a1275cc0f96adf7aa15c6aea2225ec5c0112a7108b08235410fd996f", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/left-Left%20Border-sz-24.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13856, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/9c4d73513f7f", + "sha256": "9c4d73513f7f5883b481693dbe48d22a26cfebb5d6e81d28cab82ef69e170628", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/lang-Languages%20for%20Run%20Content-val-moh-CA.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13757, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/9cd57acc3c8c", + "sha256": "9cd57acc3c8cbaaec5148dadff9bcd83380dff77d7add579c0a65995594ba0c8", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/left-Left%20Border-val-gems.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13973, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/01492baf7ea8", + "sha256": "01492baf7ea854191bbc7abdaf650a8500f3fba238bc905b274b3e71f8c69b55", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/left-Left%20Border-val-weavingAngles.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13979, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/45aea7d2bfa4", + "sha256": "45aea7d2bfa468dc0e5fc43cf62a3ee60c9c098776fbf00ab7c8af925cf92ab4", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/left-Table%20Left%20Border-themeColor-background1.docx.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14345, + "strata": [ + "tables", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 0, + "tables": 1, + "rows": 2, + "cells": 4, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/2dbfe3925f0f", + "sha256": "2dbfe3925f0ffa887000c329929b991f819bfdf5476108d851b8891d8b8a9347", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/lid-Merge%20Field%20Name%20Language%20ID-val-th-TH.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13725, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/f295222a90a2", + "sha256": "f295222a90a22ba59b2b0ca94251fc24d561013cc93d7de63b5062d740e5bc76", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/lid-Merge%20Field%20Name%20Language%20ID-val-es-CR.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13726, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/b3916395a3c5", + "sha256": "b3916395a3c59ec2806696a16d2e12c8a7ebe7443e91583111471b1ec7122100", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/mailSubject-Merged%20E-mail%20or%20Fax%20Subject%20Line-val-test.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13741, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/3bae60102f09", + "sha256": "3bae60102f09dfdca20e14d6cad1690689fa71fcf40fb657317be44ffe4d64aa", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/name-Data%20Source%20Name%20for%20Column.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13723, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/5f6bd7d55f2f", + "sha256": "5f6bd7d55f2f7a35b683706c6636708dc3c6bdc07a54c01dba57499cb3a69b9e", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/paperSrc-Paper%20Source%20Information.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14128, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 3, + "runs": 3, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/8cd3ebbea1fd", + "sha256": "8cd3ebbea1fda2b990d82f9d4fcfd9faab4066a685b4fa203ca213094273ffc3", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/numFmt-Numbering%20Format-val-decimalEnclosedFullstop.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15012, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/cf997dfc7f02", + "sha256": "cf997dfc7f029ef67bf540302d05173ca6beeec2bc9189ebc3abd06562363434", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/numFmt-Endnote%20Numbering%20Format-val-40-none.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17620, + "strata": [ + "notes", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 3, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 3, + "runs": 6, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/b274ddb80451", + "sha256": "b274ddb804510f7066dad7b4f388bbd9261a454a418bf9f8affff458981ba3d0", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/proofErr-Proofing%20Error%20Anchor%20-%20gramStart%20and%20gramEnd.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14012, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 5, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/9c8a0d6eef7b", + "sha256": "9c8a0d6eef7b7b272ce8debd6bb83203548dd13e18ddf714fc8d94c1a16c737e", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/pgNumType-Page%20Numbering%20Settings-fmt-thaiNumbers.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 18788, + "strata": [ + "headers-footers", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 5, + "runs": 3, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/1fe695993517", + "sha256": "1fe69599351724e1cb1d66c71819b1e5b7bb097e27f44f3a763f1d4b1e72aadd", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/rPr-bdr-Text%20Border-val%3DdotDash%20color%3Dauto.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14010, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/7ea0d8ea98b8", + "sha256": "7ea0d8ea98b8fa092426153c72444fd8ba0b3e321c5f338e25d945b90ff31b30", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/rFonts-Run%20Fonts-hAnsiTheme-majorHAnsi.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13848, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/407ef3a7e784", + "sha256": "407ef3a7e784427fb2ad375e894a17fe7c62b1ea5fafc76137925522e813306c", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/rSp-Row%20Spacing%20(Equation-Array%20Function)-val-1080.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14168, + "strata": [ + "math", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 1, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/07409f54dbd0", + "sha256": "07409f54dbd0f1404abf02127417cf01499d937ca084fe9d6d25850b21137e34", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/right-Right%20Border-val-peopleHats.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13972, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/6e44b0aa7aa7", + "sha256": "6e44b0aa7aa77c530b6ec868cfde6c38981f46e4eef6b1d7ef28456f2cbc1998", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/right-Right%20Border-val-cakeSlice.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13974, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/1619f03846d7", + "sha256": "1619f03846d76d16eebeea89c207c4d90c63efd47b6034098948dcf537b5fc47", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/right-Right%20Paragraph%20Border-val-threeDEmboss.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13907, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/3fa4b3d1820e", + "sha256": "3fa4b3d1820e156ea906d0fae7753463e26cd3a14795707a5fd17f92486617a2", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/shd-Run%20Shading-val-pct15.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13735, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/1909c8b69cf3", + "sha256": "1909c8b69cf3cb75cc9e376e224321d76a4d19d68954d6a9a49fc03b76d6dd4b", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/shd-Table%20Shading-val-pct5.docx.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14485, + "strata": [ + "tables", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 0, + "tables": 1, + "rows": 2, + "cells": 4, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/f08bc1250479", + "sha256": "f08bc12504793999f65f025ce3bc563c8f609d6330a0790b472eefe71c396c5c", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/spacing-Spacing%20Between%20Lines%20and%20AboveBelow%20Paragraph-line-1.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13833, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/ffd9bbadb66f", + "sha256": "ffd9bbadb66fd764e08477e4f9590f89c993b8e855133e0fcf276be4b006cbc3", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/sectPr-Previous%20Section%20Properties-rsidSelect-004B4C75.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14219, + "strata": [ + "multi-section", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 1, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 1, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/ee21b87d0b83", + "sha256": "ee21b87d0b835be76c99b925351f0fb498a6f5b28e7b6bc9158ea59919f9efee", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/summaryLength-Percentage%20of%20Document%20to%20Use%20When%20Generating%20Summary-val-100.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13908, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/06972c307552", + "sha256": "06972c3075524f5a8246982cf85a8562a81ee45a9f7291f6def7ae0a56b2ecb6", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/tblLayout-Table%20Layout.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14127, + "strata": [ + "tables", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 0, + "tables": 1, + "rows": 1, + "cells": 1, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/33838ccca768", + "sha256": "33838ccca768e052259790e1035ce0b9871990a4e9b7c9fceb720463d65cd75f", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/textDirection-Paragraph%20Text%20Flow%20Direction-val-tbRl.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14505, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 6, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/c95c093426c7", + "sha256": "c95c093426c721fc0a2919407ca153b6c1ed4978e806ac2a404819231fdd7650", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/top-Top%20Border-themeColor-accent4.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13880, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/b780dd9a5642", + "sha256": "b780dd9a5642b3d023ad89d8c67ec027206221cb5ccb3809355a924207b4c757", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/top-Table%20Top%20Border-sz-255.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14338, + "strata": [ + "tables", + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 0, + "tables": 1, + "rows": 2, + "cells": 4, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/1ad46d67abd0", + "sha256": "1ad46d67abd0fa9f02265630b0a35bd77c8c6b97cac8adce2d275a1e423058da", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/top-Top%20Border-val-handmade2.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13988, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/46551b4aa513", + "sha256": "46551b4aa513919248474a8bd54f040f139a237b20fb08269eb8aafa7b15f312", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/top-Top%20Border-val-whiteFlowers.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13986, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/780650de89e3", + "sha256": "780650de89e3460980e2239b3d3405e78fe4875539baa90d0c673802cd714cdb", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/truncatefontheightslikewp6-Truncate%20Font%20Height-val.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13975, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/f817087d3ed9", + "sha256": "f817087d3ed98a85c83343934807da7c8fca148a017a1d3966b79e602739637c", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O14ISOStrict/Word/w-Expanded%26Compressed%20Text-val-33.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13748, + "strata": [ + "iso-strict" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": true, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/e9efad0ad358", + "sha256": "e9efad0ad358200a8e1e0fe4c072d2496177c3698e7e4a3da406141ddfb40c2d", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment001.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 16079, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 8, + "breaks": 1 + }, + "counts": { + "paragraphs": 371, + "runs": 329, + "tables": 8, + "rows": 56, + "cells": 344, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/649e832f43ef", + "sha256": "649e832f43ef00c11d7080701e5d91d4ec9976405fb6d82f926bb6de4305051c", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment002.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17062, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 26, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 39, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/56b5dbc3c57a", + "sha256": "56b5dbc3c57a8f74dd2812b5374421531a7fd9ddbe4a80da2e75f2cb903f6fc9", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment004.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 26232, + "strata": [ + "comments", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 3, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/211495de25d6", + "sha256": "211495de25d6e7f62c28ddaa19031aff4293c2e0b0565e7cb3fb7e3adc2d91ab", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment003.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14889, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 6, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 10, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/ee39323c3b51", + "sha256": "ee39323c3b51378014adb7305c1efe6a912d4457702c4d983466e41cba4f8426", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment008.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15900, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 13, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 10, + "runs": 28, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/f20357fc91be", + "sha256": "f20357fc91be5192f69e8a9432f69998ca35b2222727d8db5bafcb57807b984f", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment007.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14677, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 8, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 12, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/180ad1727959", + "sha256": "180ad172795944b3034fb00a24037c2d53930d1010a0588162d4660b187ed917", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment005.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13987, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/65da49b466c8", + "sha256": "65da49b466c81122a94d116c9bff78fc0abec2b232ad55fbc270c4f807927674", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment006.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14531, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 8, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 16, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/5d33ab0a17e3", + "sha256": "5d33ab0a17e361485710c9a53ddedd670a55bdfb6af30f080a671440af2cd386", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment011.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 12617, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 0, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/5989f09cabe4", + "sha256": "5989f09cabe485526b6dbfe59a83b1ac517dd26a0a3667b37f571f3984705649", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment010.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15484, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 12, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 28, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/7c9baa81b441", + "sha256": "7c9baa81b44160bc4d939bbed49f487cb2ab5f0d2c746ae49671f1e3fec370a5", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment009.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15825, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 9, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 6, + "runs": 20, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/e2f8105ad12c", + "sha256": "e2f8105ad12ce681dfafc7a79daedfdedf65c3046f8f21091adc4d46070eb3cf", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment012.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14220, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 6, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/f997e3fd7511", + "sha256": "f997e3fd751132591dfad02d31c9f4eb5d995d5ac3288300845f7aebfc9bf2ea", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment013.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17059, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 10, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 36, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/b2a008d4c815", + "sha256": "b2a008d4c8157342d5c42764128f4fb9eb2817ad17bd6c9334e9e52adaa2fef2", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment014.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 19233, + "strata": [ + "comments", + "tables", + "multi-section" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 20, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 22, + "runs": 74, + "tables": 1, + "rows": 4, + "cells": 16, + "sections": 2 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/2b2391e64eb6", + "sha256": "2b2391e64eb6a1edbdf56b11d56e6cd8171af5834b5e2a8caa0407f744600f80", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment016.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 21841, + "strata": [ + "notes", + "comments", + "text-boxes", + "vml", + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 1, + "endnoteRefs": 1, + "commentRefs": 4, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 1, + "altContent": 1, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 15, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/9ffe4095af8f", + "sha256": "9ffe4095af8f724d0f6c0ee55378044868cbff55994315c1b845aa13d4b317b0", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment015.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 21037, + "strata": [ + "notes", + "comments", + "text-boxes", + "vml", + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 1, + "endnoteRefs": 1, + "commentRefs": 2, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 1, + "altContent": 1, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 12, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/faa1cf677a50", + "sha256": "faa1cf677a50635f4519ce5574a399ed567f39de106bc020cda81b1853ec1162", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment018.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14053, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 6, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 3, + "runs": 8, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/f84ec2c35525", + "sha256": "f84ec2c355252778d75a6fe39af6559fd802d23ead6702b0d9aee7c488d4eeec", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment020.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 19301, + "strata": [ + "tracked-changes", + "comments", + "tables" + ], + "features": { + "ins": 7, + "del": 31, + "move": 0, + "rPrChange": 2, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 1, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 33, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 20, + "runs": 67, + "tables": 1, + "rows": 1, + "cells": 1, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 4, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/53e1778d1db2", + "sha256": "53e1778d1db250a0b314a7ab5c7967b2aa43bec2ebbe0d3b3163102ab4f8d0b9", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment019.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17658, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 29, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 16, + "runs": 51, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/c0e9f3fe9e29", + "sha256": "c0e9f3fe9e2975b592ddc313d80243ab687d0dcc8a4aa46d3db287386c92f848", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment017.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 47792, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 6, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/c516c85b9199", + "sha256": "c516c85b91991a3fb7f7ad1d3a5df46ec0200477e5b3c89ca40876b5dfee1017", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment023.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15394, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 12, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 28, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/4ab24bfe9048", + "sha256": "4ab24bfe90481b303eaffee83dcb6041f51c4362f0b4795f794c97449518488e", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment021.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17853, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 9, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 10, + "runs": 25, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/ec2e3134e1ef", + "sha256": "ec2e3134e1efd2b8a54def2dca2858365d5620b7d63122e4604c103d307f50e1", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment022.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 22487, + "strata": [ + "drawings", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 1, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 1, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/a29808dd883f", + "sha256": "a29808dd883f5caa18cb68ae13238a7f6c985d6330149f41c2be71b79eac7812", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment024.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14583, + "strata": [ + "tracked-changes", + "comments" + ], + "features": { + "ins": 2, + "del": 1, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 5, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 21, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/bc448bdb76a0", + "sha256": "bc448bdb76a031097d1ca8117c82c80fa80e6e6daca34ce8c93bd6ebf0e2afa0", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment026.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15830, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 11, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 17, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/6360f7ba8c69", + "sha256": "6360f7ba8c69d67b2f2ad54efcee7b8ff42500d1634ce3a3a084a9e3059ce459", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment025.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 19348, + "strata": [ + "tracked-changes", + "comments", + "fields" + ], + "features": { + "ins": 10, + "del": 1, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 20, + "sdt": 0, + "fldSimple": 0, + "instrText": 3, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 9, + "runs": 85, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 2, + "relationshipCount": 10, + "externalRelationships": 1 + }, + { + "id": "open-xml-sdk/c1623574c0d3", + "sha256": "c1623574c0d3bc7637a65f0162356551bae2301a58387b3478d138342e18cdd4", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment028.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17193, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 15, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 12, + "runs": 31, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/18efa1f64bb4", + "sha256": "18efa1f64bb47f993acd631f52f240a4a5c62ea276ffe1b5cf9b1791d2e3eb7e", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment031.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15340, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 3, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 12, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/324a1f7ca1b7", + "sha256": "324a1f7ca1b746c8de043005b11a697cf14091e81a0fee068d9bf7607a0ee741", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment030.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15158, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 5, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/915d37a65069", + "sha256": "915d37a6506933dfeac6adfba4e04e709d674e72aa9b25ef8bbc57da58774885", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment029.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17037, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 26, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 39, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/d8827bf2c16f", + "sha256": "d8827bf2c16f289a86c7ace4aae3a66b45c2481328d886f35612285a3411b357", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment033.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 27096, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 136, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 108, + "runs": 382, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/aa59cc406e92", + "sha256": "aa59cc406e92ad9f5638ad33dbcfd7d9b68a591009f9da4ed1af8655a1f81573", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment035.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 28660, + "strata": [ + "comments", + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 23, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 1, + "altContent": 1, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 24, + "runs": 57, + "tables": 1, + "rows": 13, + "cells": 13, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": true, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/70502b5ae795", + "sha256": "70502b5ae79528e3d5283d6b9c871fc65f5fbac41d5a79837843a1125f3ea8bf", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment034.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17859, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 12, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 10, + "runs": 36, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/a2761444da50", + "sha256": "a2761444da50ed1c95d28b49f4e4ed808f1630b74cf8cd9d71dcb3c5824e8014", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment036.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 16619, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 49, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 5, + "runs": 81, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/83270c32f971", + "sha256": "83270c32f97199a1db26be0d6e829cc290b5c88ec60a6504cacdc315a838d0cc", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment037.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15774, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 18, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 7, + "runs": 61, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/922c85e10a82", + "sha256": "922c85e10a822a9a204ec8d22197d33602c4e7a779b773cc8281cbb90411c0c0", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment039.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15658, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 6, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 13, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/969176e24128", + "sha256": "969176e24128e4f406b80b6c0a1fc81e009a96f0b2c9b762a242c98409230c4f", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment038.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14547, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 3, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 4, + "runs": 11, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/148a2feac8e7", + "sha256": "148a2feac8e7568e870c2a2d1de723161921ae627386589e74176cbdfd20a7cf", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment040.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 22778, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 7, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 26, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/3191d8b27094", + "sha256": "3191d8b27094e5e72dda3f302ddab389f633797b074ebde5224d4f072ccf2b77", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment041.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 58280, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 27, + "runs": 36, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/25c3f68e74e1", + "sha256": "25c3f68e74e1a6397c911eef81a6e9b7a244abcba9887e70f41cb54d6358c66e", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment044.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 16233, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 6, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 11, + "runs": 30, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/464915b98fa9", + "sha256": "464915b98fa9fcc1c4c0c1e15561cb8ff3bc5736938f9c743284a620a6a2d6a5", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment043.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15315, + "strata": [ + "tracked-changes", + "comments" + ], + "features": { + "ins": 2, + "del": 1, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 2, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 15, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 2, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/a8ab72021268", + "sha256": "a8ab72021268c504cca48a1a99ae98032b94bdf664f8e8105aefcdc445024ef0", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment042.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 29603, + "strata": [ + "tracked-changes", + "notes", + "comments", + "text-boxes", + "vml", + "drawings", + "headers-footers" + ], + "features": { + "ins": 35, + "del": 0, + "move": 0, + "rPrChange": 4, + "pPrChange": 2, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 1, + "endnoteRefs": 1, + "commentRefs": 3, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 4, + "math": 0, + "vml": 3, + "drawings": 3, + "altContent": 3, + "tabs": 3, + "breaks": 0 + }, + "counts": { + "paragraphs": 22, + "runs": 39, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 13, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/e0c4e00c4633", + "sha256": "e0c4e00c46337318a53c3f773b194bef1c23c1c8a16716045ec84c5d023efd43", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment046.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13668, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 4, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/a1f826ff0d87", + "sha256": "a1f826ff0d879bffca35b744b5cd998928b564a4fc8281d7bdda208ddbb24b27", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment047.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15109, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 11, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 32, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/f33d24327384", + "sha256": "f33d243273841d03d52c213db8445b7486c97bbb4b16880d7924f697e7c58d28", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment045.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 17345, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 16, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 12, + "runs": 34, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/caa583c50e8a", + "sha256": "caa583c50e8ab43946e80b3452dc9895a9b61777b4bcb6c40915d2e21a7dbc2d", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment048.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 21387, + "strata": [ + "notes", + "comments", + "text-boxes", + "vml", + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 1, + "endnoteRefs": 1, + "commentRefs": 7, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 1, + "altContent": 1, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 18, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/a57fc0eab95d", + "sha256": "a57fc0eab95dac917143e08bec2a2ba12fedd163d1dda543aaf9fc7b504a48d6", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment051.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 13951, + "strata": [ + "tracked-changes", + "comments" + ], + "features": { + "ins": 0, + "del": 2, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 1, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 2, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/4a68cca3d4cd", + "sha256": "4a68cca3d4cdd5e831598367fafbb4f7f0ccfe658735f52028b1e4d34da2ba27", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment052.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14755, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 8, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 12, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/887a84a42e3c", + "sha256": "887a84a42e3c49cd342a4e126f895aeb98b4d03c7b06619ab8a8bf07e318aa19", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment054.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15593, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 5, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 14, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/4bbbcf23c252", + "sha256": "4bbbcf23c252bb357670f785bed5ac13da02ac492b213723f7baf6cafca560ae", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment055.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 15980, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 9, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 22, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/cc311f92ceb4", + "sha256": "cc311f92ceb41a0e7c768473e88b75e32c98c239044cfa2983b5302b8fe16211", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment053.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14349, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 3, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 3, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/176c5f7d783e", + "sha256": "176c5f7d783ef43a8389633f7c967750f1f7e889e0a7b1dece4c582bbe72f3fe", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment049.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 217035, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 3, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 7, + "runs": 20, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 3 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/1cb213fa7b31", + "sha256": "1cb213fa7b3180b456af2bdf440cb23c1f9eacb9f14327f57937f7e8fbc21b63", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment058.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 16062, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 9, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 20, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/bd1d1cb4aa79", + "sha256": "bd1d1cb4aa79bc03a60e7fdd2b4bb2feff8680e7fa19b0ad06316d5bfe10d841", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment056.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 27020, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 2, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/a42d2cae61e1", + "sha256": "a42d2cae61e10fd178695197e5ff5ce5fcdc90cec37d1738f7213d293715a8d2", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment057.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 32972, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 2, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 1, + "runs": 2, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/947a8fa2bd00", + "sha256": "947a8fa2bd0031e28b059db202634a50f1558bbd9d51dcc72fc915c8f3d27f43", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment059.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 11835, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 11, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 5, + "runs": 19, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/058d2a510a1f", + "sha256": "058d2a510a1f011abe4109e2f2fd1654f5080a1230eb894ce4a478107d7ff812", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment060.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 14985, + "strata": [ + "comments" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 21, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 4, + "runs": 29, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/532f5827cced", + "sha256": "532f5827ccede89631ad7afd546e64f98a9e90087707303d8b93af57490b20e5", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment065.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 81330, + "strata": [ + "comments", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 65, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 8, + "runs": 79, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/5fc149a5230f", + "sha256": "5fc149a5230f1a9e5e7d56be3a0d80897fa3ae226d0a34dfebc3755cc5130093", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment066.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 83248, + "strata": [ + "comments", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 65, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 16, + "runs": 96, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/d9361f8be9d5", + "sha256": "d9361f8be9d522ddb3c310016bdbcca18a80f730ba892cbe0bb5a626ac7c754c", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment061.docm", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 81338, + "strata": [ + "comments", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 65, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 8, + "runs": 79, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/1beb6d3fe0d2", + "sha256": "1beb6d3fe0d2940200c7a7524e6dc73fe68cf9f2bf622ba4bc563a706bbaf02f", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Comments-Sample-15-12-01/Comment067.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 81459, + "strata": [ + "comments", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 78, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 8, + "runs": 95, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0 + }, + { + "id": "open-xml-sdk/805e18445073", + "sha256": "805e18445073b0b61679bc8764a5a5bd793b6e2eb2adbf5e92c7b17833e30dc8", + "url": "https://raw.githubusercontent.com/dotnet/Open-XML-SDK/cd2b359ef824737edb93f1c6157c19551aae1e52/test/DocumentFormat.OpenXml.Tests.Assets/assets/TestDataStorage/O15Conformance/WD/CommentExTest/Invalid_Word15Comments.docx", + "source": "open-xml-sdk", + "license": "MIT", + "bytes": 81314, + "strata": [ + "comments", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 65, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 8, + "runs": 79, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": true, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0 + }, + { + "id": "superdoc/fc2ee8d32402", + "sha256": "fc2ee8d324025f68da12e86d51e8ab8223818a1fda356011932d0f92d100a50b", + "url": "https://docxcorp.us/documents/49e72bbe21f1cd201bac350075f7e1699e6d453c8e0a927dec907565ef86a223.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 15640, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 474, + "breaks": 0 + }, + "counts": { + "paragraphs": 21, + "runs": 26, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/2987e1926755", + "sha256": "2987e192675516e6d8d297463c3ca6946c840a2f69ef7f1c538ee41b38695a9c", + "url": "https://docxcorp.us/documents/8b77c5c08f8f60da23cb76005854e38aac104be29c8eb1f29c620db07fe2addb.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 32086, + "strata": [ + "vml", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 1, + "drawings": 2, + "altContent": 1, + "tabs": 1, + "breaks": 0 + }, + "counts": { + "paragraphs": 26, + "runs": 56, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 2, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/bb9e18723420", + "sha256": "bb9e187234201ba3c8e15d8b73900e5331bcaa58efde7d446f2508a8ceb6dcee", + "url": "https://docxcorp.us/documents/6bc3b38986fc2163391dc0099a26640c566b801673c90e978d0edd5fb53a76eb.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 13785, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 14, + "runs": 22, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/bb67bf2d319d", + "sha256": "bb67bf2d319d3f57bdb33c83853a9736181c235300e47b6e4200d2722f268b62", + "url": "https://docxcorp.us/documents/0f582727deba41aebc5643adda1ac39970360ef3aa2ba6a18e85203b092ac534.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 14930, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 29, + "runs": 81, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/fb546f5cfb98", + "sha256": "fb546f5cfb98b2c9e26a3e075958f9b445de7d2674ec1539e28bd22ecd046581", + "url": "https://docxcorp.us/documents/82325c95040adfb3dd9fc013594756da689547def47ab120b35f6be132084693.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 36109, + "strata": [ + "vml", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 13, + "drawings": 0, + "altContent": 0, + "tabs": 184, + "breaks": 1 + }, + "counts": { + "paragraphs": 446, + "runs": 711, + "tables": 5, + "rows": 25, + "cells": 79, + "sections": 25 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 4, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/3ceb54c19b93", + "sha256": "3ceb54c19b933856f93e3dd1fbf9be6be54892da9ff31c84133cf795a05b4b0f", + "url": "https://docxcorp.us/documents/7561fb85f79c0304a4f79f9393739fb41a48bf32a6d7f99d010a048fd8151d74.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 23931, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 4, + "bookmarks": 4, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 31, + "runs": 106, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 17, + "externalRelationships": 4, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/6a2150f69928", + "sha256": "6a2150f69928e7cb5dd26e3551ca2fb086f5e53e33950b892184d794375371c0", + "url": "https://docxcorp.us/documents/ed3e87e82817245fc606260af21cf3ef009cafffff2cf1c7e45e3c3cb47db9c6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 16385, + "strata": [ + "fields", + "text-boxes", + "vml", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 15, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 1, + "altContent": 1, + "tabs": 15, + "breaks": 0 + }, + "counts": { + "paragraphs": 21, + "runs": 50, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/65704ce0384a", + "sha256": "65704ce0384ac64ac48d9dc6890f07cb506dab3f528ffde3385358f3cc106c8e", + "url": "https://docxcorp.us/documents/daf32df8e3c8e300f1a568da7cef4aba133929e9ce7f83be0980bb69327cad33.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 83732, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 8, + "runs": 33, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 2, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 1, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/8862eb7a55c6", + "sha256": "8862eb7a55c642ee45d529db8b1daad29ae9c1cfe6916ed5e0dc29f36d356e33", + "url": "https://docxcorp.us/documents/7621e91d018d628341a5863de814f5316f08765f239fe92c8be0a367352ddac6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 17546, + "strata": [ + "fields" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 762, + "breaks": 0 + }, + "counts": { + "paragraphs": 88, + "runs": 178, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/9d63a1f37b57", + "sha256": "9d63a1f37b5775499f570ad12407850c3ff9067d5b3341cf56a15ad4341c6e6c", + "url": "https://docxcorp.us/documents/d27fe5513ca474bcd6c02136d2e4b8179203f5855c4333af81bc964755c7abe4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 35304, + "strata": [ + "vml", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 3, + "drawings": 0, + "altContent": 0, + "tabs": 87, + "breaks": 0 + }, + "counts": { + "paragraphs": 165, + "runs": 3682, + "tables": 1, + "rows": 1, + "cells": 3, + "sections": 7 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/f14036335f4b", + "sha256": "f14036335f4b7310809edeb67f71525bae9632989e85a9151eb63f25d24c0d92", + "url": "https://docxcorp.us/documents/3290c8a96fe493248bf9e491655dae2df87dee7b81779739ce2bb347c41b0c34.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 52833, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 214, + "breaks": 2 + }, + "counts": { + "paragraphs": 259, + "runs": 964, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/93f4a8ab6a4a", + "sha256": "93f4a8ab6a4a51a6ea371ccaf5f0ee228664901552afb10a8a9ce41256787da1", + "url": "https://docxcorp.us/documents/67b65d790a9b55984640ce9c14e66ab2b70ab5d689d0c8ed2ba0348bebe6b32f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 14751, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 9, + "breaks": 0 + }, + "counts": { + "paragraphs": 14, + "runs": 42, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/83b7f6348cd7", + "sha256": "83b7f6348cd7b33bcf071cc8705c15b88cc8d157b690c498b76efa999d1cdf97", + "url": "https://docxcorp.us/documents/8d13aa8286d4c2ed14b237df4c20a6dba4ee20acbec0ddca454ace3bf9f47da5.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18173, + "strata": [ + "fields" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 851, + "breaks": 1 + }, + "counts": { + "paragraphs": 88, + "runs": 178, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/7ace71b11fac", + "sha256": "7ace71b11fac55cb9368a84a415cf2afbdcf05cb7952ff9cbd8f6d731b771681", + "url": "https://docxcorp.us/documents/0c77793e3a49a879b90d4be6bd51930e3c3ba88062c8fdc46c60c97f65fe7dd9.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18367, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 15, + "breaks": 0 + }, + "counts": { + "paragraphs": 42, + "runs": 211, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/8f68aecd0041", + "sha256": "8f68aecd0041fd7559a6df316c0aa8c271285e3c4d8d13c2798a02106def83c9", + "url": "https://docxcorp.us/documents/c24eebc6bc47cacee0d224a7df24b82b833e060656afbe7d52a7a3f5500c1274.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 38370, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 28, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 13, + "breaks": 1 + }, + "counts": { + "paragraphs": 124, + "runs": 363, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 15, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/794c3736b9d7", + "sha256": "794c3736b9d77d5d8c03ad61ae7349c759998c6a463905083e89f20a9978b346", + "url": "https://docxcorp.us/documents/030a0a8f80032897810340172cc9e262aba8ac7e624fc8d31a9aa4811c7f514b.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 19781, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 4, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 1, + "breaks": 0 + }, + "counts": { + "paragraphs": 32, + "runs": 92, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 2, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/c19a5fa9f7b5", + "sha256": "c19a5fa9f7b5d61a461ae90297173bd594a3a0f233d62b84a3a7170d85ec81ce", + "url": "https://docxcorp.us/documents/2bd51787b4cb73e33d2e7a170d504417b02eee5bb5a70ed37735c9a2888dceae.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18080, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 11, + "breaks": 1 + }, + "counts": { + "paragraphs": 18, + "runs": 90, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/0bcf3ebed5b3", + "sha256": "0bcf3ebed5b31b0279ec3ce69ec1c32d84e7144becef586c816d71fd9ee50290", + "url": "https://docxcorp.us/documents/4cd1d2793d73c08c45ca42641ccbea56d67405d044b0fed6d90c8e9ddb19c140.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 72173, + "strata": [ + "vml", + "drawings", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 13, + "drawings": 10, + "altContent": 10, + "tabs": 147, + "breaks": 0 + }, + "counts": { + "paragraphs": 245, + "runs": 5120, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 11 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 1, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/be84dd732e53", + "sha256": "be84dd732e53a7821648b5ffa95d3d8f904135675b53edb68cf30c722806bf51", + "url": "https://docxcorp.us/documents/b85b8bbc0437ebf62e5ed239e877077548cfe77fb68fba2df2a0beeb8db885e0.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 60040, + "strata": [ + "fields", + "drawings", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 1, + "instrText": 11, + "hyperlinks": 0, + "bookmarks": 14, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 45, + "breaks": 0 + }, + "counts": { + "paragraphs": 86, + "runs": 305, + "tables": 4, + "rows": 9, + "cells": 22, + "sections": 3 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 9, + "footers": 8, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 27, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/3672e700831d", + "sha256": "3672e700831db466cf43ed5a58e0b6c89314236d1436ecbff140584d8e436058", + "url": "https://docxcorp.us/documents/b750c6bb61005bbb776ae626e68eb5b0dbc578c3576b8313e2cd4ae7f2cea23f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18803, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 140, + "breaks": 0 + }, + "counts": { + "paragraphs": 84, + "runs": 168, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/f68e03506e92", + "sha256": "f68e03506e92218fdb11322032fc6df2b77c2133f0978a349e7698a812d05a40", + "url": "https://docxcorp.us/documents/c5529d4319854f1925d8ad6f70f47502ec2b7a6de88bc3d5ec271a385243b193.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 828599, + "strata": [ + "drawings", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 2, + "altContent": 0, + "tabs": 7, + "breaks": 2 + }, + "counts": { + "paragraphs": 178, + "runs": 540, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 3 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/5213631fc7a1", + "sha256": "5213631fc7a1078c5a6b5d64c27eb24f0d78da5f8efe575091cec928ad633d5e", + "url": "https://docxcorp.us/documents/881d686427decf539b988feb5907eb9d23c727b2dc8e4b9d0fdf54b6ca42c1e6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 16020, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 8, + "breaks": 0 + }, + "counts": { + "paragraphs": 17, + "runs": 70, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/a3815f37a34d", + "sha256": "a3815f37a34d39aadb2314338be38f71d4f4d3351c0e6a449455cfb06b248526", + "url": "https://docxcorp.us/documents/80b6eb5166d48affe6a1bbc087076eaf51c6ea6b79c314a5b66ff0212ac56737.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 12805, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 10, + "breaks": 0 + }, + "counts": { + "paragraphs": 16, + "runs": 65, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/757799b09490", + "sha256": "757799b094900bd26fe8a61d2fe3cf356400d4cdaf854b7cf2d356ee4ca67fb6", + "url": "https://docxcorp.us/documents/11eae8e6472dc53b2049a61a6d4e2b1e0eb0cc915a41df64905db68eb58f06a5.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 360731, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 22, + "breaks": 0 + }, + "counts": { + "paragraphs": 30, + "runs": 33, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 0, + "docType": "legal", + "lang": "en" + }, + { + "id": "superdoc/4dbb9e13d65d", + "sha256": "4dbb9e13d65df7bddad8beb91607134e0ce59d2c1075e65877199be30692f64f", + "url": "https://docxcorp.us/documents/275ec91b9b43cd48d25d840948552f453380670b9811ccbf4cca9bd193b7ceab.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 35879, + "strata": [ + "notes", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 1, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 50, + "runs": 34, + "tables": 2, + "rows": 13, + "cells": 26, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/652ad4435bed", + "sha256": "652ad4435bed0ffec2d124bba83bbd95ae03377a37141fe47d65bda1d0a4e99b", + "url": "https://docxcorp.us/documents/a4f00f48a951aad711e1b3bb7e5502b916b256f59e2c0e9262d9a0d14a8d8e60.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 15303, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 4, + "breaks": 0 + }, + "counts": { + "paragraphs": 32, + "runs": 70, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/12d7bc23e96b", + "sha256": "12d7bc23e96bb671b4bf6f8db90e189d9a8529d380eaab5130f3db566fba3f78", + "url": "https://docxcorp.us/documents/0e19a76eb2bfff8c095bd5434a8b26a9654399fee664aacd7a42235abc81db04.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 32833, + "strata": [ + "fields", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 45, + "hyperlinks": 0, + "bookmarks": 31, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 91, + "runs": 524, + "tables": 2, + "rows": 34, + "cells": 89, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/a4a7cd15e856", + "sha256": "a4a7cd15e856e38554da5201231b8d64da25093b65e41efc9feea5a7451bab46", + "url": "https://docxcorp.us/documents/0d77647a90f9a3ca3f74f5db31cb081b19d926f959f88d876f02af63e2377c6c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 126852, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 6, + "altContent": 1, + "tabs": 9, + "breaks": 0 + }, + "counts": { + "paragraphs": 100, + "runs": 95, + "tables": 2, + "rows": 6, + "cells": 26, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 2, + "embeddedObjects": 0, + "media": 6 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 18, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/8d3ea4121bc2", + "sha256": "8d3ea4121bc210badef0424ca998529d3dca724535aa8eeb0663e5db585985d5", + "url": "https://docxcorp.us/documents/eef491d1a8164e09b685979df77e652f4df235d1643e2738b67e461d976071df.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 20623, + "strata": [ + "vml", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 3, + "drawings": 0, + "altContent": 0, + "tabs": 14, + "breaks": 0 + }, + "counts": { + "paragraphs": 109, + "runs": 105, + "tables": 2, + "rows": 26, + "cells": 88, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/6fd659d2c145", + "sha256": "6fd659d2c1451d4a627f527824fa6ad72bd4a465e95ed384fe8360e7fb54644a", + "url": "https://docxcorp.us/documents/2fb8fa86f48de3be8078fa333f0db68eb016d23c96d55bc18e8aeb17c3badf6e.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 113407, + "strata": [ + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 7, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 85, + "runs": 104, + "tables": 1, + "rows": 6, + "cells": 12, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 7 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 17, + "externalRelationships": 2, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/6f2130ba32ad", + "sha256": "6f2130ba32ad9389e6db68caff0a9f543d736a759c446e8c0eaa33c49cf2e2ba", + "url": "https://docxcorp.us/documents/f102c4c7669e317ed06c694e0b11ab0d32ca1427576e6ef50830668850e92a2c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 43576, + "strata": [ + "fields", + "vml", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 86, + "hyperlinks": 0, + "bookmarks": 14, + "textBoxes": 0, + "math": 0, + "vml": 2, + "drawings": 2, + "altContent": 2, + "tabs": 15, + "breaks": 0 + }, + "counts": { + "paragraphs": 129, + "runs": 913, + "tables": 1, + "rows": 8, + "cells": 96, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/4508b72f6616", + "sha256": "4508b72f66165b69043b415f8feb60463132c57a2df3fd5f01e6fb1033b7cfdb", + "url": "https://docxcorp.us/documents/15d9b7d97e9bc8f35aba7e1effe8372b1012969cafd132203256723a11974a2c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 43543, + "strata": [ + "fields", + "vml", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 86, + "hyperlinks": 0, + "bookmarks": 14, + "textBoxes": 0, + "math": 0, + "vml": 2, + "drawings": 2, + "altContent": 2, + "tabs": 15, + "breaks": 0 + }, + "counts": { + "paragraphs": 129, + "runs": 913, + "tables": 1, + "rows": 8, + "cells": 96, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/10532093b4e7", + "sha256": "10532093b4e710edd16d39d1f26cde2872213903b5f721e44e804d917535ee1a", + "url": "https://docxcorp.us/documents/50a5a6e9a5c01b06593960d144c17a7d852e47bf3c61990ef151d80dae5d8ba1.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 760375, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 64, + "breaks": 0 + }, + "counts": { + "paragraphs": 61, + "runs": 79, + "tables": 2, + "rows": 18, + "cells": 36, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/89a6dc214ce4", + "sha256": "89a6dc214ce4989e5123607a4b5ba2bf2efc32b0cd561b94f0a1e12c896e9247", + "url": "https://docxcorp.us/documents/1edc971b8fe50bea089ac4f67c50e051ae964bf158a1eac62d6b12560453499a.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 23730, + "strata": [ + "vml", + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 4, + "drawings": 2, + "altContent": 2, + "tabs": 3, + "breaks": 0 + }, + "counts": { + "paragraphs": 50, + "runs": 43, + "tables": 3, + "rows": 7, + "cells": 10, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/aa40db76f708", + "sha256": "aa40db76f708440bdba762b3e3575e5bc9160bad63a9e189d716032bb2d20f4f", + "url": "https://docxcorp.us/documents/323fbc3bf7dd7de42b9f249360bca57df74792b897c624bc920270c0a52eead2.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 464625, + "strata": [ + "content-controls", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 2, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 46, + "runs": 28, + "tables": 4, + "rows": 10, + "cells": 18, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 15, + "externalRelationships": 1, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/185b28dbc77b", + "sha256": "185b28dbc77b0626ee31cc2e95d0c29d1a4e77b99b4ebb396565b2e837e1fdcf", + "url": "https://docxcorp.us/documents/1ba434a4f62c99217fb520425e2a20b9ec82e3d34f5341d8999efcf9f83066c9.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 54181, + "strata": [ + "content-controls", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 20, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 34, + "runs": 55, + "tables": 7, + "rows": 10, + "cells": 26, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/3612071b1893", + "sha256": "3612071b189315d5e06adae9aa60c9e0e53425fd1ac04730c1bc98b87b9d49c1", + "url": "https://docxcorp.us/documents/6fe37625832b6bba93d2dde349268d3d6a2c76378adf444c125d5474c1d707a4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 13655, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 38, + "runs": 56, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/754110c981a5", + "sha256": "754110c981a56798c7ae35dc72da80292948575ec1a330b240fe06c1be3c0dc3", + "url": "https://docxcorp.us/documents/325f4db69a99614089f68d09f75390efddbcdf929a12c77388ae8831560c9750.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 204552, + "strata": [ + "content-controls", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 4, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 1, + "breaks": 0 + }, + "counts": { + "paragraphs": 70, + "runs": 71, + "tables": 3, + "rows": 23, + "cells": 62, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 15, + "externalRelationships": 1, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/53438e12f864", + "sha256": "53438e12f864b8991cbe6802180e246c8cbde4b92c7eab238bc1111d3c7f0831", + "url": "https://docxcorp.us/documents/b34306bfe3b2d601f1037938711816eac87a065981ada2cc2dfccff254d2e96c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 58679, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 63, + "runs": 39, + "tables": 3, + "rows": 12, + "cells": 43, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/cc7103ed30e7", + "sha256": "cc7103ed30e73b6de89c2c8dbefb952685bb6529f8a53b017bc52a4aca939508", + "url": "https://docxcorp.us/documents/cdee54d07b0ce450c8562dc7bbbe6c7706fa1f25de5151a81b20129f1edbbb9d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 23014, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 81, + "runs": 60, + "tables": 3, + "rows": 14, + "cells": 64, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 16, + "externalRelationships": 1, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/489796305b8c", + "sha256": "489796305b8c3587cba69a77ec8c15d6bfb4f675ea5ac4a03fc80322c888e718", + "url": "https://docxcorp.us/documents/6758b1c5f8909359983bc7644546e775faa8c4fad7f7b830ec742dd6ef37e20f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 142021, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 18, + "runs": 33, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/2946c4b987b0", + "sha256": "2946c4b987b0b9fd7c8dff443e1a403ae788cf90ddb05238cd2336168e38fcee", + "url": "https://docxcorp.us/documents/b8d02471f7b267fb3580676e260c9bdadaf66983a78b491a7739c5646fc1f85e.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 93605, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 72, + "runs": 69, + "tables": 6, + "rows": 23, + "cells": 55, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/f3e10fa0582e", + "sha256": "f3e10fa0582e30502e6df27274fdc29f14059a83b0892cbbc2e02c4f6ee5a8b1", + "url": "https://docxcorp.us/documents/46d87dc20520f8479939cbea2504c6f4c88cde7853c185b5ea48773012de651d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 43401, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 9, + "breaks": 0 + }, + "counts": { + "paragraphs": 47, + "runs": 100, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/18f9d108cf12", + "sha256": "18f9d108cf12514f9c32755e82850bae2fd141336c2c371673d7d46054cc99d3", + "url": "https://docxcorp.us/documents/0b18c6b4437c35a81d4bf086a88a78adc4a641b76a2994279becdeeebce082aa.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 139325, + "strata": [ + "headers-footers", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 11, + "breaks": 0 + }, + "counts": { + "paragraphs": 41, + "runs": 69, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 2, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/94686add4cb0", + "sha256": "94686add4cb0951b755afdc757739e3a669ea6e7d7f7379de041c5c220032762", + "url": "https://docxcorp.us/documents/8a12485502704250fa82e27683b75eabc63af20644cc60cc02bb2b2f199d486f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 28381, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 43, + "runs": 45, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/a7e646f842b0", + "sha256": "a7e646f842b00ec4935ec78bdfa8512f0dd07c3e31072ac394f16ceece4cbdba", + "url": "https://docxcorp.us/documents/43667eabcaf07a4bb3add6ee5d8e1d1e81e9413af06a5f675b968c37057d77e3.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 24545, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 57, + "runs": 99, + "tables": 1, + "rows": 21, + "cells": 42, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/6dc1a66f2cb0", + "sha256": "6dc1a66f2cb0a6d55fcf0f89ec7863808b2d322c1c30683bc45368092292ad70", + "url": "https://docxcorp.us/documents/029a57beadb92809a70b4542a9a93580ee82c1b56ee1c83b272591eb1d871fb4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 11398, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 48, + "runs": 30, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/1577cb62ad71", + "sha256": "1577cb62ad711f217388bbe0f807ae6b50a592766c4a3da2cd742be7bf6e1993", + "url": "https://docxcorp.us/documents/81c0e85b99003fe7af60698bd388e1b6ee44bc861d796d9ba912256d0e322bf0.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 11682, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 48, + "runs": 30, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/0c24e641da93", + "sha256": "0c24e641da932dfb9a91c6d4646d22c61a35ad0238f2e384470ed633394965b6", + "url": "https://docxcorp.us/documents/e8252508f5fb2bce2c7d2152d865a37cb1b1c4e60368cd4fe2fdc974d8b3f4bd.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 41750, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 1, + "textBoxes": 18, + "math": 0, + "vml": 17, + "drawings": 17, + "altContent": 17, + "tabs": 1, + "breaks": 0 + }, + "counts": { + "paragraphs": 54, + "runs": 64, + "tables": 1, + "rows": 5, + "cells": 10, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 3, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/b8b171247d80", + "sha256": "b8b171247d8098d4b32a75e23091520ac056a82ba19fb2566b7c61c663a2a992", + "url": "https://docxcorp.us/documents/d802c7b89a596bc43c56c5f96fdc848d37fa3df8df55d6e30011584b0f7d8552.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18744, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 50, + "runs": 106, + "tables": 1, + "rows": 7, + "cells": 14, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 1, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/d8f0b65f3cbb", + "sha256": "d8f0b65f3cbb6d2b67b91f8a61176a6d0590cef8fd030c6aa4fd5f9ee8982546", + "url": "https://docxcorp.us/documents/f1d0aae53586e29f9964d15a6bf7dcc21006dd4883cdef953943109bae60f1d4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 11534, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 48, + "runs": 30, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/6e87c73d26cb", + "sha256": "6e87c73d26cbb31a7c4cc111d37cc1af207c65cad47c81faf032434ba0551d7b", + "url": "https://docxcorp.us/documents/e3ae2b98ba471a327070a1b9624cfd61bfce3ac3a77be5016a14391493fc8401.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 17180, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 119, + "runs": 121, + "tables": 1, + "rows": 32, + "cells": 113, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/4cde08eea20e", + "sha256": "4cde08eea20ec0b381871b8a5dbfd3a6beadb7848bb46a263b8fc87788b100e1", + "url": "https://docxcorp.us/documents/4100e2a752d4f6f84a1f5f5e7bbc24a1962c52890bf1a16bbfcfdaa30df527da.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 2223782, + "strata": [ + "fields", + "text-boxes", + "vml", + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 3, + "hyperlinks": 3, + "bookmarks": 3, + "textBoxes": 10, + "math": 0, + "vml": 7, + "drawings": 9, + "altContent": 5, + "tabs": 3, + "breaks": 3 + }, + "counts": { + "paragraphs": 626, + "runs": 520, + "tables": 19, + "rows": 47, + "cells": 178, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 4 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 16, + "externalRelationships": 3, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/f346272a0d3f", + "sha256": "f346272a0d3f461f502f529dec16dcd6c87710e6003b36eb03f79059a64bbb55", + "url": "https://docxcorp.us/documents/fb0ddf717952c30996b1d65822335a581bf197bbd97b33535b7284145864bf31.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 17176, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 4, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 34, + "runs": 69, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 4, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/cd15b69cd749", + "sha256": "cd15b69cd749fff7f4c0c5c3c15fe89f8b746ce5b7a4bf1fe3d838f47e982876", + "url": "https://docxcorp.us/documents/fec2435ca96a9beb90c862f6fa386034062cdbbe6ad59bab692b48d460f42a46.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 22425, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 14, + "breaks": 0 + }, + "counts": { + "paragraphs": 68, + "runs": 171, + "tables": 2, + "rows": 12, + "cells": 24, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 3, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/7728cf395fb3", + "sha256": "7728cf395fb36b7a2f86f32192515cd5d5096e09445d478ddd5c9538f4841512", + "url": "https://docxcorp.us/documents/6b01e39bbebea1c023600fa282832ddb0c97ded2b20e7100723a09c303268644.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 723390, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 32, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "forms", + "lang": "en" + }, + { + "id": "superdoc/2ce8136711fa", + "sha256": "2ce8136711fab6a36c954ba7bcc45c3dfca95cfa63149ea5dd2c0e9345a19c73", + "url": "https://docxcorp.us/documents/fd47127dfceb348f53fb8c15de013bd823e64a493029a0b6ef7a23c87a75426c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 174626, + "strata": [ + "fields", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 13, + "hyperlinks": 4, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 4, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 49, + "runs": 124, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 4 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 4, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/d6f66beb291c", + "sha256": "d6f66beb291cccabb94d6d0ab46e8d213057ff399fc629cc466856364b9ae9c8", + "url": "https://docxcorp.us/documents/069766133c8a7560f3e4523c8bd9276a49df3fa31815026fb986e41a77af195c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 11368, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 46, + "runs": 28, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/857dd400bb57", + "sha256": "857dd400bb575c5f037cf7b4ff9f18b9aa50a703a7e674c61faa6e6dc8e2f8a9", + "url": "https://docxcorp.us/documents/428555cf941001ca49b76e2c43f457d9ea2ca170b1f30ea9e1a07a10584b21f6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 27266, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 63, + "runs": 212, + "tables": 1, + "rows": 7, + "cells": 14, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 2, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/ce091d023bb1", + "sha256": "ce091d023bb10dec68c93346f31f6f2d3e2206e7ad04a5bad953aadf84063705", + "url": "https://docxcorp.us/documents/7d2a658865cce946ee5fc093870cad9ec46c6fa2068445c76e3d8ee94cce99d4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 11462, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 46, + "runs": 28, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/18efd4ffecb2", + "sha256": "18efd4ffecb27bbdf7a210c78ee0fee8f415f7e426be23032647ee0b6d3280c4", + "url": "https://docxcorp.us/documents/9ac7b2d8da390a7c548a37940e5c34ae90305f84e74376cf6fc034cecf263928.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 17251, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 4, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 56, + "runs": 100, + "tables": 1, + "rows": 8, + "cells": 24, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 4, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/e67484871021", + "sha256": "e67484871021e502f633dd5880b47e17e237803d628a24cc25a6a7f8204a4a68", + "url": "https://docxcorp.us/documents/28ecbed6126b6055fb704a96d3cdeeca4bf29720887957d00b00b6552f33d9cb.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 11497, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 47, + "runs": 29, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/54a141f7b8c3", + "sha256": "54a141f7b8c336b050402f1cd64226bb113ed0ea678efa2e0f3158c743a85bc9", + "url": "https://docxcorp.us/documents/bcae55b380e4b5d7e3174c18b1106c6151d35d13125411fb81cecaa6c0fc2aed.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 13707, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 30, + "runs": 91, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 1, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/02aab15be259", + "sha256": "02aab15be259945f506d32088bd44a2cd2505def5782dc951235cbce2b19d669", + "url": "https://docxcorp.us/documents/5296767f2adaa01ee83afe72e72626dd8a1a21611332bdedfe63d53f30971d2f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 11422, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 46, + "runs": 28, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/e7de089808ae", + "sha256": "e7de089808ae8a5cfe247a6b315ae93f35da66142dd1cbaeab53ce9081e9852f", + "url": "https://docxcorp.us/documents/29c114e1f5a1f04c37393f3cca7c76be009b47013138337617f5ab6519c6c460.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 58839, + "strata": [ + "fields", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 3, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 3, + "breaks": 1 + }, + "counts": { + "paragraphs": 32, + "runs": 72, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 3, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/aa6803f96346", + "sha256": "aa6803f96346744ce9088f065fb72104753a18b855a9839ccb5e79ef3dee270a", + "url": "https://docxcorp.us/documents/b0fe6cee5342c692e9287a22405eb6dc9c93cd2f94da2d4d5d8b0f954b9a1213.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 19221, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 45, + "runs": 98, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 3, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/c15a20e673fe", + "sha256": "c15a20e673fe2888648199cc0d11ee4c6be1c3aba576464ade17ee365433732c", + "url": "https://docxcorp.us/documents/37ef6c7ed8d52ac33650d7409fdd12020e37eb3f085337d469b74947b592fbe8.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 14103, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 3, + "breaks": 0 + }, + "counts": { + "paragraphs": 47, + "runs": 69, + "tables": 1, + "rows": 8, + "cells": 40, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/588dbd81e2ee", + "sha256": "588dbd81e2ee01177289c1cfa576228d746e9d646bdfb09c0cefe9950fc7312e", + "url": "https://docxcorp.us/documents/453f34d9bc389153b85a3bec71242d127d665f738ffd18bbdeee0b90ab2dc5fd.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 84206, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 38, + "runs": 46, + "tables": 1, + "rows": 3, + "cells": 12, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 1, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/bd9d34f5f926", + "sha256": "bd9d34f5f926044855514c583bcdd8e9c462d048bd4c7eb21ea2acb67e10d3b5", + "url": "https://docxcorp.us/documents/7d428ab643eb274e8b4000ce88b42d399b882a091fd723aaf6944baf83c6c56d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 204164, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 17, + "runs": 22, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 1, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/9f5605cf2536", + "sha256": "9f5605cf25361d6167ac389d5d7b8e5f546d271588ed8ea15513c3998f01fac0", + "url": "https://docxcorp.us/documents/4bfb84383b611f44db2f40892f4c578511311f228af188cfe0b606c717c32287.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18584, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 42, + "runs": 83, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 3, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/2685837c158b", + "sha256": "2685837c158b1e01814a6b45d3a08eb8f136fe07d2ba539bb4247fdabd5b9b2b", + "url": "https://docxcorp.us/documents/e91c027e69f7b1d32514622bf3510fd14644d4836b951f3d922fb65a4a2f7529.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 11469, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 2, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 47, + "runs": 29, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 3 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/d8cfce4977b4", + "sha256": "d8cfce4977b4ae6ef3b9a322e769a16a34d4411481b6b5b2261f6729d02180d7", + "url": "https://docxcorp.us/documents/650a1d539e9f87af1abffe393206f67a16e30886ad3b02d63ed645a04a08d337.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 19671, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 26, + "runs": 170, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/0bead49172c9", + "sha256": "0bead49172c9d1bfcd5e8d0fe2f9e1c7d8e91218310ff894858456e352bcbe64", + "url": "https://docxcorp.us/documents/ef1dd71cba80bab032e0d498835b15ee1d73231d2609c99f9c8e1b041c57dbf4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18156, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 76, + "runs": 130, + "tables": 1, + "rows": 13, + "cells": 71, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/2a0c27ec171f", + "sha256": "2a0c27ec171f01c932c01f64916a1a8224c728117c762a3c857872f9662d655b", + "url": "https://docxcorp.us/documents/99a5f8802d681f1bb44b0afff5bea5d57231c64eb9d25551781cfd147abcde33.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 45088, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 1, + "breaks": 2 + }, + "counts": { + "paragraphs": 310, + "runs": 493, + "tables": 6, + "rows": 110, + "cells": 262, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/58361f3304ee", + "sha256": "58361f3304ee207db226392ddbfba0ae9c4168d35d1fec4ca538abe982f6dc2f", + "url": "https://docxcorp.us/documents/3f1a4824354792557a36955ddc32e06990b94cd0aff3ffddeba0990a10fd8100.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 15724, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 21, + "runs": 35, + "tables": 1, + "rows": 4, + "cells": 18, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/a49cf6051ea7", + "sha256": "a49cf6051ea70410102d54c846238c0b7542f8e7ea5b4f1b455b6e617df71248", + "url": "https://docxcorp.us/documents/4a5753d4986a2c688376548e8c42b808fac02345b6e7f90b3f5d4f8ad72f5965.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 28352, + "strata": [ + "tables", + "multi-section" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 9, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 7 + }, + "counts": { + "paragraphs": 230, + "runs": 599, + "tables": 3, + "rows": 75, + "cells": 174, + "sections": 2 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/6e2753325ec8", + "sha256": "6e2753325ec813c578b0ae66b8d235beadc20d2af43a865d0a017cd7f31903e0", + "url": "https://docxcorp.us/documents/21db3620a9cc7d2110e4ce92c1ec00e26140946e4f097df01153cf7638c15f62.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18940, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 55, + "runs": 55, + "tables": 1, + "rows": 5, + "cells": 38, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/52fe48d657e6", + "sha256": "52fe48d657e62a24e7c739a459316bd73c601384d2ca998143d882fc8f2b346b", + "url": "https://docxcorp.us/documents/f5acb7c674d18488723be9e077ef9c3c88839a38dfb690a0d3ee057af689fea6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 18413, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 20, + "runs": 66, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/6d1566e802bf", + "sha256": "6d1566e802bf58bbea87b16374613db3ff26aab1ae997a6b8ba97635a8cfce45", + "url": "https://docxcorp.us/documents/63a571aa2b8669c3063097edad1889fc987afd7c4cc944852b849eed1dd050f2.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 38991, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 308, + "runs": 907, + "tables": 5, + "rows": 109, + "cells": 246, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/a92f2ebb3c94", + "sha256": "a92f2ebb3c94dbd0f7b462bb6b211372675cd78c07d36b8f942e288c832ce609", + "url": "https://docxcorp.us/documents/7488a70f00dc0b4e13e9acc9aa911b3e3bb076f80715ad246917992576d2415e.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 43764, + "strata": [ + "fields", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 2 + }, + "counts": { + "paragraphs": 99, + "runs": 533, + "tables": 1, + "rows": 6, + "cells": 30, + "sections": 3 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/a82f4d8de3f3", + "sha256": "a82f4d8de3f326fae910c66707fac37ff1571c6bb1c582a0caddefa79df5b6c4", + "url": "https://docxcorp.us/documents/74ef152848e0a47419ce042abeb32105cdbf0bb92228e825341470f1dd897b1c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 45886, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 1, + "breaks": 2 + }, + "counts": { + "paragraphs": 281, + "runs": 1026, + "tables": 4, + "rows": 102, + "cells": 232, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/e77cffbf4f0b", + "sha256": "e77cffbf4f0bca7e85e3fa22ffbd6cb10ffcc0a4f22663805dee360e529b11ea", + "url": "https://docxcorp.us/documents/e26d5a5a087fcc2c8242bb2c6a0f2e1cfa2c119d53a5f7170630089e086e636e.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 25627, + "strata": [ + "text-boxes", + "vml", + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 1, + "altContent": 1, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 31, + "runs": 113, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 1, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/96599e08c85e", + "sha256": "96599e08c85e2d364d2fce24d668e214a088691ef388f3da61536f922f612ade", + "url": "https://docxcorp.us/documents/50dff5630fe4f399b3fd11e00e225b4daea6a9b9645e9c28338be2b686ecf291.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 40621, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 42, + "breaks": 2 + }, + "counts": { + "paragraphs": 214, + "runs": 462, + "tables": 3, + "rows": 16, + "cells": 90, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/2e3ccf595780", + "sha256": "2e3ccf595780cf3a47d337bd3767f1758dbe04df06e32960f2e67d47e425f1b1", + "url": "https://docxcorp.us/documents/d35cbbdbdfe19c44ee3436fdacc21621ed3b895ef61b6aa809318c7e7ba3e034.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 43217, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 35, + "breaks": 1 + }, + "counts": { + "paragraphs": 143, + "runs": 982, + "tables": 2, + "rows": 11, + "cells": 34, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/250c50ffe2bd", + "sha256": "250c50ffe2bd8ccbd77c1b30142ff805ac3da7c98c08dbb5dc78078742036be9", + "url": "https://docxcorp.us/documents/81aa310bbf1b88f78d28438542f36ee046ec24ee62cdb68c6fd6552b2875c348.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 40558, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 4 + }, + "counts": { + "paragraphs": 324, + "runs": 898, + "tables": 6, + "rows": 113, + "cells": 254, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/080193c9ce00", + "sha256": "080193c9ce00f2c6e2284af30069afc511055ca0c4a8b96cf3aba02057482974", + "url": "https://docxcorp.us/documents/a9fcd8178bc91b1b59f9c50f60f392a8af795fe51b2d2ffd7558c719060fb897.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 28908, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 8, + "breaks": 0 + }, + "counts": { + "paragraphs": 89, + "runs": 521, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/db844d78d578", + "sha256": "db844d78d5784784febe980deb36a37c9850f2218e97cbf0cdcb2f85cb3644bd", + "url": "https://docxcorp.us/documents/bdf631227f861942b3274bc956f960ea960d3f92c4806fa78b714c10e04bec89.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 35367, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 47, + "breaks": 2 + }, + "counts": { + "paragraphs": 165, + "runs": 598, + "tables": 1, + "rows": 10, + "cells": 60, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/d6d98f17a30b", + "sha256": "d6d98f17a30b5ee58495d2c4f5c3cf471de29fcf6b9d74b51cd73f5e7a2a52c9", + "url": "https://docxcorp.us/documents/2daf1ff66d2f9a4c73484c8e7cca3ba15f91477e5c679de4409c4894d84013c2.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 41403, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 73, + "breaks": 8 + }, + "counts": { + "paragraphs": 210, + "runs": 640, + "tables": 3, + "rows": 17, + "cells": 97, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/68eab36d362c", + "sha256": "68eab36d362c9c5c1230a9d3d2fd30c7ac31940ba8c38ef54fe961c5091b2449", + "url": "https://docxcorp.us/documents/f619d0f7a05c9ef33a1f56bbd266cd851a4c1e4f78e03d8b94a4241183920651.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 46938, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 662, + "runs": 1342, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/c0f62964ab41", + "sha256": "c0f62964ab412d4a104dcbf9b89c6dade638e5de6e0f7bb132548dc9e579363d", + "url": "https://docxcorp.us/documents/d9563f2f0fa446ed7dad5c488c2074af23cffcd33d700dc41548b57b55ade7ff.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 42780, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 8, + "breaks": 0 + }, + "counts": { + "paragraphs": 130, + "runs": 1235, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/2bd79559943d", + "sha256": "2bd79559943d82490fc01260d27a5cced00eb11b9754572c8d7cc0ea56b60577", + "url": "https://docxcorp.us/documents/671337e710665f8c816eb8a4e7b94a6f649b31c3067cc3dca0fde8d792a28d3c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 19833, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 28, + "runs": 99, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/0a6ac516940f", + "sha256": "0a6ac516940f3d63069b56414140b3eca49fa65e8c6f5f86cb6a26a25ab97bef", + "url": "https://docxcorp.us/documents/84a3efb6d5304d8d7a5ae72dcb57d36ed4c84f0afaa5ed16a29797e6f80455b7.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 8120, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 13, + "runs": 11, + "tables": 1, + "rows": 2, + "cells": 8, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/6e9125abd84d", + "sha256": "6e9125abd84d4d5234f92f740e4211445803b3f8a5d72ca9834ec109f528ad8b", + "url": "https://docxcorp.us/documents/8d5ffc717ad217caddeb3b4ec60b2c79ee39688eecd6581b4d4d8ae894f4d17d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 29811, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 372, + "runs": 545, + "tables": 1, + "rows": 29, + "cells": 356, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/754c314632a0", + "sha256": "754c314632a0a7122af6fb39ee59b61b562bd70c36238812ef8479f88db4f07c", + "url": "https://docxcorp.us/documents/1acdde2cc63deddbc9740a30fee9742f229cacda91687f2967fd6010e7e86d8e.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 42940, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 42, + "breaks": 2 + }, + "counts": { + "paragraphs": 227, + "runs": 578, + "tables": 3, + "rows": 16, + "cells": 90, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/ac6c801ac6e5", + "sha256": "ac6c801ac6e5f7b5525b60e3c2bbe6bf9b02c408211fd66562cef4c29ed2e88e", + "url": "https://docxcorp.us/documents/91d56da90ab69582177910b3e29676a120e59a2eecc9d86e0cfb75895f67b9f3.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 474462, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 3, + "altContent": 0, + "tabs": 1, + "breaks": 0 + }, + "counts": { + "paragraphs": 20, + "runs": 41, + "tables": 1, + "rows": 4, + "cells": 4, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 3 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "administrative", + "lang": "zh" + }, + { + "id": "superdoc/b7897328bcc7", + "sha256": "b7897328bcc734dcdeecd8bf42b2c973fa508976139c8b099309d5d4e61bad1a", + "url": "https://docxcorp.us/documents/8e92a70c746391f950caff0c013604f0dab22e666b024766ec6630663fcad691.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 31995, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 82, + "runs": 110, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/4e66b6a522e6", + "sha256": "4e66b6a522e64b1e1b3536f8a593d0d90fe085395e62dbf045e61c58800b03e8", + "url": "https://docxcorp.us/documents/c41d9554f5979e68179fa593d82dd9e5a15a8df631e7b9cfd890f362fb15c08f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 23362, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 25, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 170, + "runs": 225, + "tables": 4, + "rows": 19, + "cells": 25, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 32, + "externalRelationships": 25, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/8dfd3aff7b9a", + "sha256": "8dfd3aff7b9a5366f9ea7e97e6741578d4c8763edf91ebaf55af835a46364523", + "url": "https://docxcorp.us/documents/0879ab81754d7c1388b271575712d98a612041b6777d02c71300f0b40a61391f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 65736, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 87, + "runs": 100, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/fc6d9fdb84b9", + "sha256": "fc6d9fdb84b9d25a351cbd2f6aee25c6c8e5eae65298d4011ae3e7043cabcf7d", + "url": "https://docxcorp.us/documents/f95b493be476e3acc02caafa05b99c737d5bde47ea1d00827363867409e435dc.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 15849, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 11, + "runs": 93, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/2ec29874edae", + "sha256": "2ec29874edaee7ac8c496c4bab86ca8a779e006bad2d673aeeb0e53f8c96689b", + "url": "https://docxcorp.us/documents/6dbbca136e7b368c034b029e5fea71ccad398d37d161a5ec70509f9df64968fb.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 177582, + "strata": [ + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 12, + "bookmarks": 5, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 154, + "breaks": 5 + }, + "counts": { + "paragraphs": 264, + "runs": 328, + "tables": 2, + "rows": 22, + "cells": 31, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 24, + "externalRelationships": 12, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/6a9b9d1e55e8", + "sha256": "6a9b9d1e55e849e8a9167460723970161949f79fb5e554cda3fedd27f6f60585", + "url": "https://docxcorp.us/documents/f5cb60a04961c5ea9be89d88469bc481953952754d1ccb64559745ec3852aebf.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 115350, + "strata": [ + "vml", + "drawings", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 121, + "drawings": 4, + "altContent": 2, + "tabs": 3, + "breaks": 0 + }, + "counts": { + "paragraphs": 87, + "runs": 117, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 6, + "footers": 6, + "embeddedObjects": 0, + "media": 4 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 24, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/99e6b005a552", + "sha256": "99e6b005a55207cfd49fa854c82cb9ec43d38bf7aa1c0c6f1c2051f1fcea10b6", + "url": "https://docxcorp.us/documents/61df19cb2fe040fc67fca98376fe31dbae4ff735c81947363a2421c698db41db.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 52415, + "strata": [ + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 10, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 117, + "runs": 194, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 3, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/292f02c85736", + "sha256": "292f02c85736560b92618b4885c878769a1bf8b3b34b6b09efad2c35c6fb1e57", + "url": "https://docxcorp.us/documents/8872af382b6dce25f2ffc59355e9ca0f69546240ae1ac97564581ece56b8da47.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 2375412, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 8, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 37, + "runs": 18, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 8 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 15, + "externalRelationships": 1, + "docType": "educational", + "lang": "ru" + }, + { + "id": "superdoc/a1e5a3d57f5a", + "sha256": "a1e5a3d57f5a4e4d876a26b7997f0db8c8c755b1d2d935d5786cd4486ef0255c", + "url": "https://docxcorp.us/documents/1e097653072fbf4fe294cb977b1acb66c47868b9d2d72e42bb39a2e3481126f1.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 112950, + "strata": [ + "fields", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 0, + "bookmarks": 6, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 22, + "breaks": 0 + }, + "counts": { + "paragraphs": 54, + "runs": 66, + "tables": 1, + "rows": 3, + "cells": 9, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/84b0cbc19a9f", + "sha256": "84b0cbc19a9f204e88983e5ed589ac1ac568ef314788ac29b0febd93375c2df6", + "url": "https://docxcorp.us/documents/047d04346d6d1e737a6f04d3cd763b41a8e9c42248d02e2529d6f62e9a6122d6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 88452, + "strata": [ + "tracked-changes", + "drawings", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 1, + "del": 5, + "move": 0, + "rPrChange": 6, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 3, + "breaks": 0 + }, + "counts": { + "paragraphs": 285, + "runs": 783, + "tables": 2, + "rows": 6, + "cells": 12, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": true, + "numbering": true, + "styles": true, + "settings": true, + "headers": 4, + "footers": 6, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 24, + "externalRelationships": 2, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/b64d5a386289", + "sha256": "b64d5a3862899bc702e01c6afa403b4d03fe825fc80e1d41ccccd475d174fd65", + "url": "https://docxcorp.us/documents/16c9e388177b32503c0eca38681714dfdb2c66e939bd0bf13545f52bf4ca3bc1.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 112899, + "strata": [ + "fields", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 3, + "hyperlinks": 26, + "bookmarks": 39, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 21, + "breaks": 16 + }, + "counts": { + "paragraphs": 467, + "runs": 2072, + "tables": 1, + "rows": 13, + "cells": 26, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 2, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 27, + "externalRelationships": 14, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/3dcbee480b7b", + "sha256": "3dcbee480b7be4b93f7779f470d2eabd135fdd727984d13432910d15d6f106a3", + "url": "https://docxcorp.us/documents/1b2be20654bd5e391acc186c9843f9e1d9202a4e7504c2fa9228ba69cbeddcab.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 12853, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 14 + }, + "counts": { + "paragraphs": 14, + "runs": 31, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/2cc72d07a2ab", + "sha256": "2cc72d07a2ab89addf141588efef196437dc6308fbe35092e76ab1156440feb5", + "url": "https://docxcorp.us/documents/e57d16021ea5461a787fd7a680faf2d41568d1e2a7e32c47442352981d438243.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 99560, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 3, + "breaks": 0 + }, + "counts": { + "paragraphs": 84, + "runs": 125, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/484841449510", + "sha256": "484841449510f5ef269c4d694884c827a8e22650349d87027f6e7f332589631e", + "url": "https://docxcorp.us/documents/75132cc8fa53af1cfe2e65f70937745da2451a1dc9742face96f5cc18633ceb4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 20818, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 93, + "runs": 106, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/385494324dc6", + "sha256": "385494324dc6dc7a63c47b53beab9c8539e6c99b7867cbb2b678f09d0d3fda56", + "url": "https://docxcorp.us/documents/71bf084241cd59b71b94eef45c7c85c989057b531d7cc290bae86c15c234b23d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 107975, + "strata": [ + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 6, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 92, + "runs": 318, + "tables": 1, + "rows": 4, + "cells": 8, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 21, + "externalRelationships": 6, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/246996b20823", + "sha256": "246996b208235fb9a071b6819487f100c4507c68693626effebfcdf04332b3bd", + "url": "https://docxcorp.us/documents/8864e481818d8b9cef12f8e1d98b9ba8fab2c1feb40769a24b845591378969e9.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 31046, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 140, + "runs": 182, + "tables": 1, + "rows": 3, + "cells": 6, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/2101b9f3d554", + "sha256": "2101b9f3d554d5030808bf1ccb4050b837e55d3c9245eddc8136da3ecb34081e", + "url": "https://docxcorp.us/documents/007be0288217f8b7c4c749f8ceef211c329673cf83024a40e217a08c6d7355ee.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 931143, + "strata": [ + "fields", + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 2, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 2, + "altContent": 0, + "tabs": 10, + "breaks": 0 + }, + "counts": { + "paragraphs": 271, + "runs": 394, + "tables": 2, + "rows": 8, + "cells": 22, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 2, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/80a60d4809a4", + "sha256": "80a60d4809a42ebf59fc5bfe8d4c73178809e785786145d74f380d3b8175da75", + "url": "https://docxcorp.us/documents/c3d61fcf828c9f2f6f53e32029be862d4236cabd2ac1f53e693f6e0401ed730d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 17802, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 4, + "breaks": 0 + }, + "counts": { + "paragraphs": 71, + "runs": 71, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/637219746d4a", + "sha256": "637219746d4a2a3da5ec2ca25448026662ae7c0d0dcf1e77c020d98d0c01ca01", + "url": "https://docxcorp.us/documents/45567c09eb0f4bb64b58aa87fec89be0f565c1bd92816f5f90a2a8e270cda244.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 26175, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 90, + "breaks": 0 + }, + "counts": { + "paragraphs": 207, + "runs": 375, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 2, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/1cc56da2ff36", + "sha256": "1cc56da2ff367d90cc945de72e7a4b4e1cf3c5f094ee2728c4b9b3ff27659af8", + "url": "https://docxcorp.us/documents/16bd28beeb2eb9a8da71e3997cd6022d0255c3bb4de67af4d166a0bedbecf2ca.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 122409, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 6, + "altContent": 0, + "tabs": 31, + "breaks": 0 + }, + "counts": { + "paragraphs": 91, + "runs": 89, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 6 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 1, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/14d05d49fe54", + "sha256": "14d05d49fe54d3cf38506c032e338ce410f5b2f5f7e3add9989636886a022b2b", + "url": "https://docxcorp.us/documents/2db98d24eb7cba4036e6d3c992b23f0fae75d9abaece075d37d0b256ec4b4281.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 533134, + "strata": [ + "tracked-changes", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 1, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 5, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 158, + "runs": 235, + "tables": 3, + "rows": 15, + "cells": 38, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 2, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 1, + "relationshipCount": 17, + "externalRelationships": 5, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/9db59d1ab13f", + "sha256": "9db59d1ab13f5cae9f66ac5b1367c2b7d236c8771218ac573eea281114d8918d", + "url": "https://docxcorp.us/documents/d541e45af1dcfb3c1f81c1084fb5c6b2a4cf005466564eafae47e9688e2664ab.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 69683, + "strata": [ + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 131, + "runs": 144, + "tables": 2, + "rows": 11, + "cells": 27, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 1, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/9f0524cb79ef", + "sha256": "9f0524cb79efc13915c11c47672b087593acc2c995e841c209c3fe3bed63c62c", + "url": "https://docxcorp.us/documents/bddff1b854882244e123ceb7e2c2702f89c7535545be26c8f8664af1b797591e.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 66643, + "strata": [ + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 5, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 2, + "altContent": 0, + "tabs": 10, + "breaks": 0 + }, + "counts": { + "paragraphs": 100, + "runs": 128, + "tables": 1, + "rows": 2, + "cells": 4, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 18, + "externalRelationships": 5, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/d806f3b62179", + "sha256": "d806f3b62179e9f463322fc074613e2dcca35b4ddeb77443d2c58834d5a37014", + "url": "https://docxcorp.us/documents/1e7206b1ee109a8611cdfbc092de6ca6ece7e3016f404c6ac8dbbf3900c85708.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 99443, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 60, + "runs": 66, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/1e8de3a7548a", + "sha256": "1e8de3a7548a635bc54c5fbc26aba2abb949e654cc425e0286f855b7971378b2", + "url": "https://docxcorp.us/documents/63774fc16e7b3cdfa77ac978bd5284aecfd356c2741befc2e1dffefe31d907cd.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 822071, + "strata": [ + "vml", + "drawings", + "tables", + "headers-footers", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 2, + "drawings": 2, + "altContent": 0, + "tabs": 2, + "breaks": 1 + }, + "counts": { + "paragraphs": 193, + "runs": 475, + "tables": 1, + "rows": 6, + "cells": 15, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 2, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 0, + "docType": "policies", + "lang": "en" + }, + { + "id": "superdoc/833676428aeb", + "sha256": "833676428aeb58e7cf334f58a1bd201e812683741680d49e823154287c2d7142", + "url": "https://docxcorp.us/documents/fa416810866f8ca918f08445281bad4ce3ff2effb51aff398251837fdd1e8e57.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 796315, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 17, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 10, + "altContent": 0, + "tabs": 0, + "breaks": 16 + }, + "counts": { + "paragraphs": 104, + "runs": 73, + "tables": 72, + "rows": 75, + "cells": 78, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 10 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 41, + "externalRelationships": 26, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/5a895a21bf3a", + "sha256": "5a895a21bf3a077646065874fae62bbfea560336a10b4e9fc20c174e0d4a5d1b", + "url": "https://docxcorp.us/documents/8d0b0e24f1733d2116e75cfd5192e0f056ba006564eaf8feaf6b7f536fe2c5af.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 720830, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 7, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 9, + "altContent": 0, + "tabs": 0, + "breaks": 16 + }, + "counts": { + "paragraphs": 92, + "runs": 57, + "tables": 64, + "rows": 67, + "cells": 70, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 9 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 29, + "externalRelationships": 15, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/d8eabe4051f3", + "sha256": "d8eabe4051f3125bb783046c671f4f9ae86fc1edde0ce247587fa2213ca012ac", + "url": "https://docxcorp.us/documents/2484a303b7b4f6089967ac9e3c39dc52f55ce5f8b70a9112e0091f18ec4bae30.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 1047595, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 6, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 10, + "altContent": 0, + "tabs": 0, + "breaks": 2 + }, + "counts": { + "paragraphs": 111, + "runs": 46, + "tables": 71, + "rows": 74, + "cells": 77, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 10 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 29, + "externalRelationships": 14, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/465adca075d7", + "sha256": "465adca075d748456f88bc11f1c6bb7fc5b627084a0a48feee18c568a6f3f071", + "url": "https://docxcorp.us/documents/1d305dc15456ef3c66cbbd9dfffb94c426d74bac002dbc88f620cc6d7adc2a1a.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 141562, + "strata": [ + "text-boxes", + "vml", + "drawings", + "multi-section" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 6, + "math": 0, + "vml": 5, + "drawings": 7, + "altContent": 5, + "tabs": 8, + "breaks": 0 + }, + "counts": { + "paragraphs": 48, + "runs": 156, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 1, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/a9a0de5b78a9", + "sha256": "a9a0de5b78a98e07712c2ddbbc598766600dbf72efda9a0a65253045a0b9c980", + "url": "https://docxcorp.us/documents/ef581b17432d0ade23b57e99162a4e2b0f1acbc76780ff321693c92c30e175e6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 3207662, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 8, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 9, + "altContent": 0, + "tabs": 0, + "breaks": 6 + }, + "counts": { + "paragraphs": 117, + "runs": 54, + "tables": 71, + "rows": 74, + "cells": 77, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 9 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 33, + "externalRelationships": 18, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/f8a2994814bb", + "sha256": "f8a2994814bb73f3983d584d9315bf877ef48cd1f74f4cd8347086b8fc25e28b", + "url": "https://docxcorp.us/documents/9ec9ddd83f5cd782bdb04bb1419d3110ef22e633a030ed63ec618c867dad02a2.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 384315, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 12, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 10, + "altContent": 0, + "tabs": 0, + "breaks": 21 + }, + "counts": { + "paragraphs": 101, + "runs": 86, + "tables": 60, + "rows": 83, + "cells": 86, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 10 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 45, + "externalRelationships": 30, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/58a12c15e3be", + "sha256": "58a12c15e3bebb78e2861ba64a65378896ca0cc79fea175a136a71e35faa74ec", + "url": "https://docxcorp.us/documents/7f414283eb5e530cbdb0c4ea2b7e52132badcb2e732c451d021dc97919b172c4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 50069, + "strata": [ + "text-boxes", + "vml", + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 0, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 2, + "altContent": 1, + "tabs": 104, + "breaks": 0 + }, + "counts": { + "paragraphs": 113, + "runs": 302, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 2, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/4e6eb904af0d", + "sha256": "4e6eb904af0ddb5eb990c94babeb0344b3ff2a762faeebb6dec13cc494377a10", + "url": "https://docxcorp.us/documents/7fb6666c5e4a9c7591075655ba41421171d1e0f059888d83e4ec11d2e2ae9fcd.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 162182, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 10, + "runs": 56, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 2, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 17, + "externalRelationships": 1, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/fd389bdbb7b0", + "sha256": "fd389bdbb7b04a361de6043a6a8e69841214d0acdd37229283dabbe11d102a22", + "url": "https://docxcorp.us/documents/730e6339ddcc6c0bcb46e7345e607a5a5e859341c8ec3e06b3920d31ec0fb5a2.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 259127, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 5, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 9, + "breaks": 0 + }, + "counts": { + "paragraphs": 99, + "runs": 177, + "tables": 1, + "rows": 12, + "cells": 48, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 1, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/ab7a1129d442", + "sha256": "ab7a1129d442111b3a018dca56b38c2910a90786b872ef30a2caae515ea9aec4", + "url": "https://docxcorp.us/documents/a0ca2e732330d3bead3e28b7f97b198cbd493537e4c84ae3da747056ef1d67a7.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 14285, + "strata": [ + "vml", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 1, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 2 + }, + "counts": { + "paragraphs": 36, + "runs": 53, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 3, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/43f882b4c110", + "sha256": "43f882b4c110e986112d7df6d9b0b64b78b134bd17f6449b5f9aa6ddea4fb652", + "url": "https://docxcorp.us/documents/e206f1f43df3c82210b61cf848bb270e62c5ca1ea2386c9ceb9f904b5ca2f1cd.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 22730, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 8, + "breaks": 0 + }, + "counts": { + "paragraphs": 18, + "runs": 117, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 2, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/f62ff3dc0dcd", + "sha256": "f62ff3dc0dcdcee0581968bc1c8cbf316b487656e8c67b59ad79812b568250a7", + "url": "https://docxcorp.us/documents/52bf44675be8206e572ef13be388f9d3697ad26060394b2f4ff2ebcde108ac08.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 14097, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 26, + "runs": 25, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 2, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/ceb588112429", + "sha256": "ceb5881124290b26b92b30c259a0407434da93dd4325b5b2ec150218474a04c5", + "url": "https://docxcorp.us/documents/1acab776bc08c4da8aa8e686bb1e7e28f3d8d16d4d9b91e0d9dbacb13d6177c1.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 591079, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 6, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 10, + "altContent": 0, + "tabs": 0, + "breaks": 16 + }, + "counts": { + "paragraphs": 105, + "runs": 61, + "tables": 72, + "rows": 75, + "cells": 78, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 10 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 33, + "externalRelationships": 15, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/e3cac869731e", + "sha256": "e3cac869731e7f8d30961fa22b493bcf3b657bca447c4c39d1b10fc66fea5f54", + "url": "https://docxcorp.us/documents/c45ac5cf602a923694519057cf83c418c39a6674cf7f6dec3eb0234534d91869.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 399141, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 8, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 10, + "altContent": 0, + "tabs": 0, + "breaks": 14 + }, + "counts": { + "paragraphs": 90, + "runs": 61, + "tables": 53, + "rows": 74, + "cells": 77, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 10 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 42, + "externalRelationships": 26, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/38aa8113b523", + "sha256": "38aa8113b52316c929409fe242ba9d1245a9e3aaf28d08a99de160228b454459", + "url": "https://docxcorp.us/documents/ce818a54fd6b81ed67ebaf27111811b19d9bee5a27e5a52c2754d8530e19ab10.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 839210, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 5, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 10, + "altContent": 0, + "tabs": 0, + "breaks": 12 + }, + "counts": { + "paragraphs": 106, + "runs": 53, + "tables": 72, + "rows": 75, + "cells": 78, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 10 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 32, + "externalRelationships": 14, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/c620713c6cae", + "sha256": "c620713c6caea4be81bde1a3caa6b5ac4734f0c570dba998d629d30cc420f115", + "url": "https://docxcorp.us/documents/1660108ffcc65da5c20a770a60a8b9a690e53cd49dfd71d3c07d0a7e11aa14f3.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 21368, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 18, + "runs": 34, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/a0b6721c9214", + "sha256": "a0b6721c92149c3945f9e6d8bcd70c0cdd720c1ba3145d50f91d000b7c21a480", + "url": "https://docxcorp.us/documents/4cf0086eef4a8c0cf2aefe8c25792bbaf20e639ad22df1d7ebddb93db9a0b5aa.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 27844, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 10, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 107, + "runs": 226, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 18, + "externalRelationships": 10, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/986f9a1a57fc", + "sha256": "986f9a1a57fce4e84349daefb4b7fc23cab2b5fb06c0f29da56284bedd2e617d", + "url": "https://docxcorp.us/documents/4e90f96d3ebbbe4caca6be8e3c8812ed7ee12cdfbcd2ccc2e780e253d34bcd42.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 43755, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 44, + "runs": 46, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 1, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/41ce1450f141", + "sha256": "41ce1450f141a13c446b19060d3dc9ebac7dcb15ce25fcf85795d6890dff33f7", + "url": "https://docxcorp.us/documents/8a7a48b53295d15a19b0085630eb908544a505cb750a375d487143b8bdf00661.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 19695, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 9, + "breaks": 0 + }, + "counts": { + "paragraphs": 51, + "runs": 128, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 1, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/3f9aead2a3d0", + "sha256": "3f9aead2a3d0d53468bad66d95499b9f3216a6a22dcf7679b1f0c8859731f6a6", + "url": "https://docxcorp.us/documents/d3ded332d413408f94bdcbaf174059f82a0fbc599e9b229adc83aa9db3b4d629.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 250975, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 3, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 48, + "runs": 111, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 3 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 1, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/2ab554a274ad", + "sha256": "2ab554a274ad6e8a06674c8a23cbc27104c6d4c59da481bd42725d82750c3923", + "url": "https://docxcorp.us/documents/3dd0d12a3c5a53bbddc5a5c886014f52ff994b28b0006ce36f9ab6cc355870b0.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 55333, + "strata": [ + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 73, + "runs": 68, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 2, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 20, + "externalRelationships": 3, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/18f7b3c83233", + "sha256": "18f7b3c83233976f54673cc523a4851146950a8c3681c0b4d5c9d03de0e480f5", + "url": "https://docxcorp.us/documents/f23c3540c55e8a251a70dd7f7d8bf95fffc838123452173aad523c87ecfb4629.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 58965, + "strata": [ + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 70, + "runs": 73, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 2, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 20, + "externalRelationships": 3, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/4008a857af84", + "sha256": "4008a857af84eb60c921a8b6ad3f4b7c76ed3c99a84790f6f1cd2ba551d99fb9", + "url": "https://docxcorp.us/documents/65deade4c5d394aec8ab81eda1e08ea63aefed6dfca7ca9b8f6dd8c496962a0f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 117535, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 13, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 95, + "runs": 114, + "tables": 1, + "rows": 1, + "cells": 2, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 24, + "externalRelationships": 13, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/d374c485c149", + "sha256": "d374c485c14909922689d82844024164a63b8c0164734be943bf0ce107873d8e", + "url": "https://docxcorp.us/documents/352d6d83659dd4e9b78071d1bef644478e91838975a35e5f7ade61d1f859241c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 14611, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 21, + "runs": 54, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/043e4ff30e64", + "sha256": "043e4ff30e641603f8b20dde128ef2b2cc29bc82f11269bdd0860fd6caa771a1", + "url": "https://docxcorp.us/documents/f3b45293bf4f8d691cb5330a2d17974b0fdcbff7a1d6dad57f57b8b9b11fbf3f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 96858, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 110, + "breaks": 0 + }, + "counts": { + "paragraphs": 423, + "runs": 2027, + "tables": 1, + "rows": 11, + "cells": 55, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/e3283927a615", + "sha256": "e3283927a6156d6088d65972e918b59d7eddeb3a42fa63e93523d7cb2b0fd12f", + "url": "https://docxcorp.us/documents/51a8a5ca05ee1e4d11f1e99cc276e4597acfc83008cde242c5eb1f8e900761c4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 134262, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 13, + "math": 0, + "vml": 9, + "drawings": 2, + "altContent": 0, + "tabs": 119, + "breaks": 1 + }, + "counts": { + "paragraphs": 489, + "runs": 2400, + "tables": 1, + "rows": 11, + "cells": 55, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 2, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/cc7550a9bb91", + "sha256": "cc7550a9bb91ff891ccbb6a8027f9de7599756e62d1d7d3ca89439cf0b298075", + "url": "https://docxcorp.us/documents/7ad10d624e2d4c18c8d1d1025577dbb509d17ca441beb65731adad8998f8c58d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 52401, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 13, + "breaks": 0 + }, + "counts": { + "paragraphs": 238, + "runs": 1082, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/640cc2e72ecb", + "sha256": "640cc2e72ecb85d85405b87c2c5eeb91289555446cedaf751807cc6fa5613ca8", + "url": "https://docxcorp.us/documents/fb1e5c7456f55277bfae7f3e1c2f3d307b056bdd6b8de3addebd914055c8d87b.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 92904, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 120, + "breaks": 0 + }, + "counts": { + "paragraphs": 315, + "runs": 2123, + "tables": 1, + "rows": 12, + "cells": 59, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/a81cd1488cbe", + "sha256": "a81cd1488cbe8f97871f09c7faa308523ed30b07cc621af656bc64a57627f652", + "url": "https://docxcorp.us/documents/707b7de3329d4c637784343e90db6e642752b4475f0b96816d49f172ec2826b6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 119517, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 13, + "math": 0, + "vml": 9, + "drawings": 1, + "altContent": 0, + "tabs": 81, + "breaks": 1 + }, + "counts": { + "paragraphs": 507, + "runs": 2325, + "tables": 1, + "rows": 11, + "cells": 55, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 1, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/76c73fe57510", + "sha256": "76c73fe57510d0bde8658f2f6eef79ccd7f4d8fec21d968c85a2126c2cc5e2fc", + "url": "https://docxcorp.us/documents/1bf0448af9e475588de09f90c53bdec7ccc9a2a9257b4f979e289d2f58078b59.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 88878, + "strata": [ + "drawings", + "tables", + "headers-footers", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 4, + "altContent": 0, + "tabs": 19, + "breaks": 1 + }, + "counts": { + "paragraphs": 233, + "runs": 834, + "tables": 4, + "rows": 34, + "cells": 105, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 4, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/ff6bb55bb8f7", + "sha256": "ff6bb55bb8f75a731d0bc8cc627a358704b5ed4d9f43dd32304d8012b3b67ea3", + "url": "https://docxcorp.us/documents/b7180e0bdebb922317c3f90dbe3c488fab4a58eed878f8b277f89ef449422582.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 20060, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 8, + "breaks": 0 + }, + "counts": { + "paragraphs": 19, + "runs": 153, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/d8b6e8a30766", + "sha256": "d8b6e8a3076628deaa864553aafad5fd13d35b1f4e7723e1ead7bc823bdf836c", + "url": "https://docxcorp.us/documents/38406f493328b410d3b795abff4ac9d6ac6ead30db1ac2ac0ae96653a615eb81.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 121106, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 20, + "math": 0, + "vml": 7, + "drawings": 11, + "altContent": 11, + "tabs": 89, + "breaks": 0 + }, + "counts": { + "paragraphs": 486, + "runs": 2254, + "tables": 1, + "rows": 10, + "cells": 50, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/5f7f2e3b8db3", + "sha256": "5f7f2e3b8db337dd6f51e9296ab3971f18a6afaff9ea513b8b1216260c8f11c7", + "url": "https://docxcorp.us/documents/e8821f08c67f90aea6c59fdeddffb193673d596d87cd7963170cc0b565291a76.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 145171, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 26, + "math": 0, + "vml": 9, + "drawings": 15, + "altContent": 14, + "tabs": 93, + "breaks": 1 + }, + "counts": { + "paragraphs": 576, + "runs": 2347, + "tables": 1, + "rows": 10, + "cells": 50, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 1, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/d31671bb20ec", + "sha256": "d31671bb20ec6873c0fff473ad5cafb2a8a72c4cbcca0671c3649aae1ba114b7", + "url": "https://docxcorp.us/documents/008cbba4033a5b232eb06eec8b13cecf61a1627264873891ba0402f16c568f84.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 50030, + "strata": [ + "drawings", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 2, + "altContent": 0, + "tabs": 5, + "breaks": 1 + }, + "counts": { + "paragraphs": 50, + "runs": 209, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 2, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/133ca6bf375f", + "sha256": "133ca6bf375fe4bb9b8bd0eea7c9d2f7f178e2efa3ab04dac238c2d695cba0aa", + "url": "https://docxcorp.us/documents/d68aa6aa28cfa91dc272a81b95a80d198b941efd9612cfa06f5c56511831716a.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 138977, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 61, + "breaks": 0 + }, + "counts": { + "paragraphs": 1994, + "runs": 3944, + "tables": 36, + "rows": 235, + "cells": 1236, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/f6b40f0d6195", + "sha256": "f6b40f0d6195f32293f6f1b94d535c67f29fda6f2a22725aebaf9f77a8f34ba8", + "url": "https://docxcorp.us/documents/b1df35ad27e93ff7b9d1c836881e426453fa5a038893d23df9ea10e6eb217393.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 22743, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 12, + "breaks": 2 + }, + "counts": { + "paragraphs": 63, + "runs": 478, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/59e387b8483a", + "sha256": "59e387b8483a0bddaffcbfd2ed40044c93f03516afea6e463ed3e0135972356a", + "url": "https://docxcorp.us/documents/66b607ab31f407086d0b623f5cfb96ed0c2aad083f6a8351bb5df2b44b4cd25a.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 123389, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 20, + "math": 0, + "vml": 7, + "drawings": 11, + "altContent": 11, + "tabs": 60, + "breaks": 0 + }, + "counts": { + "paragraphs": 473, + "runs": 2282, + "tables": 1, + "rows": 10, + "cells": 50, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/656c3a26d761", + "sha256": "656c3a26d761e3d9f78a18efcb45ca5605c11053cdd8ff8d1bd059da42debb15", + "url": "https://docxcorp.us/documents/9c6fa2c468de644ffafa21d139536ded0ef454d011b653b6d07b5ef6d5aa3cb8.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 129902, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 20, + "math": 0, + "vml": 7, + "drawings": 11, + "altContent": 11, + "tabs": 68, + "breaks": 0 + }, + "counts": { + "paragraphs": 511, + "runs": 2616, + "tables": 1, + "rows": 10, + "cells": 50, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/13eb0e4272cf", + "sha256": "13eb0e4272cfa18e037a58a1a5e309db97957b0321046f7380a091e8630451f5", + "url": "https://docxcorp.us/documents/db822096314e52bdad631dad5d2105564740bcb7509f70e017a0a60ea15e10b6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 124259, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 20, + "math": 0, + "vml": 7, + "drawings": 11, + "altContent": 11, + "tabs": 83, + "breaks": 0 + }, + "counts": { + "paragraphs": 506, + "runs": 2454, + "tables": 1, + "rows": 10, + "cells": 50, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/78468e2e8d83", + "sha256": "78468e2e8d83afa2a24f54610877ddbcad0efa1c5582071a19b30c0aa372c215", + "url": "https://docxcorp.us/documents/132ecd9708fcdc8c7be6d51909ba5a3765190a58a998796e4bd79325b3f1c77e.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 162628, + "strata": [ + "text-boxes", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 2, + "textBoxes": 10, + "math": 0, + "vml": 0, + "drawings": 5, + "altContent": 5, + "tabs": 64, + "breaks": 0 + }, + "counts": { + "paragraphs": 571, + "runs": 3316, + "tables": 2, + "rows": 19, + "cells": 95, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 1, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/e69eaa64f5f4", + "sha256": "e69eaa64f5f4c412a0a38e2854477c709042ce7ff33b9742ec9c1f24e0f3ca47", + "url": "https://docxcorp.us/documents/ad5fb2d2bf9a16faa5f42a3a769b7c5a0fab7b60ea2e337b5669289d8559b363.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 23190, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 3, + "breaks": 0 + }, + "counts": { + "paragraphs": 150, + "runs": 308, + "tables": 2, + "rows": 29, + "cells": 105, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/c79af9740ef7", + "sha256": "c79af9740ef7bcf3a56275cf644099c8fb81427dba9738ff6933ad3708fc110d", + "url": "https://docxcorp.us/documents/485da27d7eed9d04199e2a379238f842180a2e30451850e05608269118ca572c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 26168, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 213, + "runs": 374, + "tables": 2, + "rows": 22, + "cells": 150, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 2, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/7a01b0351e40", + "sha256": "7a01b0351e408ca73644486681940ba52f360e934463f0eed45a8b8fb272501b", + "url": "https://docxcorp.us/documents/9e8a29d2d0ef369addf918964d363f9c3d9408a3a18fa095e5fcd30f86fdd583.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 30416, + "strata": [ + "drawings", + "tables", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 3, + "breaks": 0 + }, + "counts": { + "paragraphs": 146, + "runs": 258, + "tables": 2, + "rows": 27, + "cells": 105, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 1, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/9b344e36fec8", + "sha256": "9b344e36fec86761f234ea3f9b2abda009d2fbec3ea061a2de78d9ef05539cca", + "url": "https://docxcorp.us/documents/697955f44fd2ee85648c4e54543cc1d6617e07ae9b09921abfeac2a2d524693b.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 91438, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 192, + "breaks": 1 + }, + "counts": { + "paragraphs": 285, + "runs": 2174, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 3, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/67d7848bd330", + "sha256": "67d7848bd33085f434a63e77392e1dafbb27afaaccda27333d2ae8a26e70a7d6", + "url": "https://docxcorp.us/documents/3fc9799e613d7f9d6af0854e954876e5091537a752debe1ba987216f5faf5521.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 2470953, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 18, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 9, + "altContent": 0, + "tabs": 0, + "breaks": 16 + }, + "counts": { + "paragraphs": 112, + "runs": 77, + "tables": 75, + "rows": 78, + "cells": 81, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 9 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 41, + "externalRelationships": 27, + "docType": "correspondence", + "lang": "en" + }, + { + "id": "superdoc/4cfe0f14be7a", + "sha256": "4cfe0f14be7af4a5a4d031ac4ec9bc7f2f906ef2c7452b2989830d420a463709", + "url": "https://docxcorp.us/documents/2a7f8c59ec6c2702ede49bdc7843159c6fb91c17f81e5c5bcd84b3f4a90b3d65.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 16190, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 6, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 338, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/1ad8b4c83365", + "sha256": "1ad8b4c83365d82aaa7f75743a94554188219edeb7828942f4adcd1e14a1fe64", + "url": "https://docxcorp.us/documents/2c596520cb0d4f5cd24907039484f6ac441d4a6efeb798eff098c4a9a85761d8.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 98149, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 45, + "breaks": 0 + }, + "counts": { + "paragraphs": 302, + "runs": 1932, + "tables": 1, + "rows": 10, + "cells": 50, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/ded87f2eb0f1", + "sha256": "ded87f2eb0f1ff0ac02692a51ba8fe4a748c5c29408d180c685cffe6328fe0ed", + "url": "https://docxcorp.us/documents/2ce88ec2828ccb152688db2c24bf5441a2d5ffe22c579113d877cbe4c4c8508f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 17481, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 7, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 1, + "breaks": 0 + }, + "counts": { + "paragraphs": 23, + "runs": 47, + "tables": 1, + "rows": 9, + "cells": 18, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 7, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/25b0ef4c5e0a", + "sha256": "25b0ef4c5e0a177f5bae2cd57636f42ed3f7c77078dc8981f3e3c27ad771638c", + "url": "https://docxcorp.us/documents/a449749654e4e9ea08e9ef06c2b4d08d66330a1da9d1249d03ca338ebad971fe.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 506384, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 3, + "altContent": 0, + "tabs": 4, + "breaks": 4 + }, + "counts": { + "paragraphs": 19, + "runs": 69, + "tables": 2, + "rows": 4, + "cells": 4, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 3 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 3, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/b6cbcb2b8a21", + "sha256": "b6cbcb2b8a21dd863c6752214d9a159f12e8461e7d1e8e63d8324586a6255a74", + "url": "https://docxcorp.us/documents/e717b5ac54c8c81b932b2bdc6946383f8d981173359a294092d14002a0952152.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 77339, + "strata": [ + "drawings", + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 6, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 13, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 49, + "runs": 85, + "tables": 1, + "rows": 14, + "cells": 42, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 8 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 19, + "externalRelationships": 6, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/30c08909f910", + "sha256": "30c08909f9105b928db10da84b2513cb724bf76e74af25339eafed5d5a15d0dc", + "url": "https://docxcorp.us/documents/59962a98c749380f208bb4ebba2a98a8e24b8ce3495b9da1c37f691947a3e687.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 329320, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "headers-footers", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 8, + "bookmarks": 1, + "textBoxes": 26, + "math": 0, + "vml": 7, + "drawings": 15, + "altContent": 8, + "tabs": 273, + "breaks": 0 + }, + "counts": { + "paragraphs": 2225, + "runs": 4968, + "tables": 19, + "rows": 252, + "cells": 1383, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 0, + "embeddedObjects": 7, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 27, + "externalRelationships": 8, + "docType": "reports", + "lang": "ru" + }, + { + "id": "superdoc/109cb57202c3", + "sha256": "109cb57202c31fed2caee9aa1559a91fdf781395b356d541495437cd88875fca", + "url": "https://docxcorp.us/documents/1843031dac653888f9a8fb2391cc480fe97108afca76f4507b173bf43c7ff53d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 92940, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "multi-section" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 32, + "bookmarks": 0, + "textBoxes": 2, + "math": 0, + "vml": 19, + "drawings": 3, + "altContent": 0, + "tabs": 33, + "breaks": 3 + }, + "counts": { + "paragraphs": 72, + "runs": 154, + "tables": 1, + "rows": 31, + "cells": 31, + "sections": 6 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 5 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 40, + "externalRelationships": 31, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/f46d15eddc39", + "sha256": "f46d15eddc39cc7a22a33d3e2f8937f3e3df2644eb195aaed369390556b3ce26", + "url": "https://docxcorp.us/documents/5dde72694ef1e11faf516b6a1310d06989c8c459980c55bea50e892d8104c309.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 27680, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 100, + "runs": 109, + "tables": 2, + "rows": 20, + "cells": 79, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/661a95d838b3", + "sha256": "661a95d838b3abd472689cccf03998ada4895386103242b40e97702ddffeb714", + "url": "https://docxcorp.us/documents/89b59c5cc6bd46190423f8e2d9fe77a8521da1ad3ab35e8f0e8593852a29f4e4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 51159, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 1, + "breaks": 26 + }, + "counts": { + "paragraphs": 1000, + "runs": 2433, + "tables": 47, + "rows": 139, + "cells": 695, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/0e65fc517a66", + "sha256": "0e65fc517a66efe8b64c9fd80e551becda34145566339c443824e9341a01e485", + "url": "https://docxcorp.us/documents/936ef10372a29db7a5f9edbc2fd09ca820b6e2fbdefde7e53e0174f6113f0e38.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 19078, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 62, + "runs": 94, + "tables": 1, + "rows": 19, + "cells": 57, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/0244bc872c54", + "sha256": "0244bc872c546a1187ef289c1c4b515b5cc3db6e1968265813e90beef3897a90", + "url": "https://docxcorp.us/documents/f300f530bd73f785aca8e5d1f08829b996d17bcc2c7002fd0746db86d37a2631.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 26747, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 85, + "runs": 89, + "tables": 2, + "rows": 17, + "cells": 67, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/9f23c7782901", + "sha256": "9f23c77829012dd96aa2a0d1ad22e42b591a23585b41fe2fa483cba7322c33ad", + "url": "https://docxcorp.us/documents/d641d579a6f3eaac3261e8831acfa354b81f79f091bc7cf6bee7cde9fccdbe34.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 154930, + "strata": [ + "math", + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 87, + "bookmarks": 1, + "textBoxes": 0, + "math": 2, + "vml": 0, + "drawings": 3, + "altContent": 0, + "tabs": 16, + "breaks": 9 + }, + "counts": { + "paragraphs": 697, + "runs": 2691, + "tables": 1, + "rows": 81, + "cells": 405, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 3 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 101, + "externalRelationships": 87, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/93952c19740b", + "sha256": "93952c19740b75df709bfc6572c35f84b96c63c20812674ebcbcb45526215512", + "url": "https://docxcorp.us/documents/6c8b2db0b1d89cadda38fcf1914a22f4f72c4326d3c3118b6671b078c74f394e.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 14679, + "strata": [ + "fields" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 8, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 127, + "runs": 162, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 4, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/bc613ac659e5", + "sha256": "bc613ac659e55ab5b5dbae23447eec179507ab1570ad911c843ccd38a4d90fef", + "url": "https://docxcorp.us/documents/fbbda5f64f769a6dd404337cfe51e2cab3e6f19a50d88fdb4808bfbb5dae6f57.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 16159, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 4, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 17, + "runs": 21, + "tables": 1, + "rows": 5, + "cells": 15, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 4, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/da3dfe979102", + "sha256": "da3dfe97910274cdb895a9047b8b28f89196b1cc36362c797e24cf3b8d54743d", + "url": "https://docxcorp.us/documents/4351c135ffc16fb462d22811ae4b9a0419feea250440d0187f6e18e4d81f15de.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 13357, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 52, + "runs": 43, + "tables": 1, + "rows": 16, + "cells": 47, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 4, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/0f074ef0be7d", + "sha256": "0f074ef0be7d2aaf8a7909710a4d4b80f7d2971071b8853231518d1feb3ece64", + "url": "https://docxcorp.us/documents/efee7e9bff39162f723a47ed89aaf4de2e37925c97c922450d181ec0499797ec.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 22021, + "strata": [ + "fields", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 1, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 67, + "runs": 67, + "tables": 1, + "rows": 13, + "cells": 64, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/d5ea87f2565e", + "sha256": "d5ea87f2565e1c8f98ea32bd6fd8eec28f6da52d462e5cbc3576d1396d59a2ac", + "url": "https://docxcorp.us/documents/bcc5214c4cae7491053e8bac836742006452205dbfeb371c5f488ae8d2f554c2.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 12937, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 4 + }, + "counts": { + "paragraphs": 8, + "runs": 21, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 3, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/c3570c038285", + "sha256": "c3570c038285e1d3dd544c52770fd6a5ed43c2a44b7c354dddb6ceaf8c9ec439", + "url": "https://docxcorp.us/documents/77ea4f60f59030bced4d5483be11819acff4955cc7def54d7abc21e4109d53bb.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 19146, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 56, + "runs": 67, + "tables": 1, + "rows": 11, + "cells": 51, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/0945fa2922cf", + "sha256": "0945fa2922cfc850194d19b650f566b5838d2914047501210238e8024a06b1a0", + "url": "https://docxcorp.us/documents/083a7937fbcd11e3331e6dc8259bcf22c66bab6c25081109c8837f51eae6fcc9.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 21781, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 102, + "runs": 184, + "tables": 1, + "rows": 20, + "cells": 100, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/5dd7a16614bb", + "sha256": "5dd7a16614bb477ef36728252734a8a7a13719985aa3c4733b4f0a506387c4e3", + "url": "https://docxcorp.us/documents/92434117c0cdfc03e80fd7566ebbdd9a81ebfb31d94f69c73feb6a980a8e5f45.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 12768, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 36, + "runs": 39, + "tables": 1, + "rows": 16, + "cells": 32, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/fb2242ebec38", + "sha256": "fb2242ebec38f378001be4d0b93fec005f695333a7377ee7ebc77355ef494262", + "url": "https://docxcorp.us/documents/040569b948f6d70e71614c1e90299f4fc9711e67c2e662c4e1518d16979bbcdd.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 36489, + "strata": [ + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 13, + "runs": 14, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 2, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/f75f5ef0fd92", + "sha256": "f75f5ef0fd92e8e665b2eb06d412268c5b5c6d8645bde39a82a06c21c1d37944", + "url": "https://docxcorp.us/documents/fc7939179a8fec6c8cfc242788a6a8d3f0a85d6a68394aed8096859bd9454803.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 12154, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 89, + "tables": 1, + "rows": 18, + "cells": 36, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 4, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/c97126f258dc", + "sha256": "c97126f258dc4a64c4054baae1b949c2498819b0df04d644904fd3751ca54b82", + "url": "https://docxcorp.us/documents/18ede9f450c7dce939baed2735095e41ab8940c15d78b12c0f0c9888c7e419f0.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 15576, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 115, + "runs": 117, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 4, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/f9ed43440f53", + "sha256": "f9ed43440f530dfa6701b93a6103e96b98eb0ed26cb5d5ef11ef022a28519517", + "url": "https://docxcorp.us/documents/900547fecf2a8e6ee796defc2b8032fd4d4bfdb09cfed44d69e68b865749062d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 19298, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 18, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 81, + "runs": 103, + "tables": 1, + "rows": 20, + "cells": 80, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 25, + "externalRelationships": 18, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/233e08d55a50", + "sha256": "233e08d55a50c094291d24ce3dee25f5efd7ec87f80b363a55461975e15a3e3f", + "url": "https://docxcorp.us/documents/6a8feda9d9c2ab65d0f9055530a78aa08d85b516ebfa05e01a3e3a2523570c96.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 23936, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 3, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 0 + }, + "counts": { + "paragraphs": 242, + "runs": 238, + "tables": 3, + "rows": 116, + "cells": 232, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/1c056850039e", + "sha256": "1c056850039ec794de9bd5e63371e3c0f5984fd7cc0544d44f2e80b384272fd1", + "url": "https://docxcorp.us/documents/84e9bb346d2c941edb7ea6aad651086f7321a528f877a085b084674727b5f2f1.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 30861, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 14, + "breaks": 0 + }, + "counts": { + "paragraphs": 52, + "runs": 194, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/e1491d050d04", + "sha256": "e1491d050d04aa109e7f736c47495dab8fb364f7e97701098d80fa7115ed4ae7", + "url": "https://docxcorp.us/documents/b3283140bec43046b9c43e6689a0ba0cddfbd6479abafef7453aca852c64452d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 22944, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 122, + "runs": 120, + "tables": 1, + "rows": 39, + "cells": 117, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/7aea4f90f3f6", + "sha256": "7aea4f90f3f670e6284ee6578e9e57c3b1317b2f48bab0341d3a14407d1fd64f", + "url": "https://docxcorp.us/documents/f069c1ddb213c6844dfc34f2f0e622dd7e7f7207329611a2457954c53c8c97b5.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 12060, + "strata": [ + "tables" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 38, + "runs": 87, + "tables": 1, + "rows": 17, + "cells": 34, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 4, + "externalRelationships": 0, + "docType": "reference", + "lang": "zh" + }, + { + "id": "superdoc/fd3c695e8a57", + "sha256": "fd3c695e8a57607a48be47280c1f55892a61f26795ac85912468e80e43ad9a07", + "url": "https://docxcorp.us/documents/f3c96556e8b64ba6b15d9e0ea07b20156691c6bf1ea8eea578f181373f88a499.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 9111, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 45 + }, + "counts": { + "paragraphs": 1, + "runs": 33, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/90a8964e433e", + "sha256": "90a8964e433e0736b6b7722067593f896807772960f82bf5cd33b190efb3c018", + "url": "https://docxcorp.us/documents/fd770967e273d70dbe73aaf3323522604909f44b2fe094d715b6a7d029b8acbf.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 8864, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 43 + }, + "counts": { + "paragraphs": 1, + "runs": 32, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/bbdf32914f95", + "sha256": "bbdf32914f958cd9ac6c35eaca821ad11af9bb4755f891cd6fb088550e3b5d65", + "url": "https://docxcorp.us/documents/9ac98c21f8d534a65214c0c9c7358deafeab73d964e679761ff55bb1c499a675.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 8746, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 40 + }, + "counts": { + "paragraphs": 1, + "runs": 29, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/59d66c473f75", + "sha256": "59d66c473f750765a57e6373deb4918a9a02f6c8584ec5a7d53d7c65a39a98d7", + "url": "https://docxcorp.us/documents/740ac9026d9e036d05bbb8ae9ed5109ee8f101d7d767f4fff240bd6d072bd3cc.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 94116, + "strata": [ + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 6, + "bookmarks": 4, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 3, + "breaks": 15 + }, + "counts": { + "paragraphs": 356, + "runs": 801, + "tables": 6, + "rows": 38, + "cells": 160, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 24, + "externalRelationships": 6, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/747cdd7bcdee", + "sha256": "747cdd7bcdee259e43d4cb30c27b94ef8b497360b53c3b4c5d55845431d5cf3f", + "url": "https://docxcorp.us/documents/8d4f581bb5a39dcccdb0975595948bff09bafd02d0836cae60234f49e9abb7d4.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 34375, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 14, + "breaks": 2 + }, + "counts": { + "paragraphs": 177, + "runs": 287, + "tables": 5, + "rows": 32, + "cells": 102, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 12, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/016393c22118", + "sha256": "016393c22118d3f15065019af1663a6a3253e710ca7901bf12423dfd44165a67", + "url": "https://docxcorp.us/documents/ce9f039c0e9b7e54c441c128e079533fddb9ae9e6461b16f503db6da117e22ac.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 772257, + "strata": [ + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 191, + "breaks": 0 + }, + "counts": { + "paragraphs": 126, + "runs": 470, + "tables": 1, + "rows": 5, + "cells": 10, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/dd0f14f00735", + "sha256": "dd0f14f007359d7b4e1ecb0545c99cfedeb337133c8ebc8ba78eabbe9789d52e", + "url": "https://docxcorp.us/documents/b6cd35904e0102f4e1cfc187dbd133f3f15f3da92dcea71a1d63ff6479b5a66d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 35642, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 2, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 26, + "breaks": 1 + }, + "counts": { + "paragraphs": 203, + "runs": 372, + "tables": 6, + "rows": 33, + "cells": 122, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/0eaec221949c", + "sha256": "0eaec221949cbc90b52d852b5afe51de7e7b52598c7e0cb0116e3fcdb323c1a6", + "url": "https://docxcorp.us/documents/fbb3abbc0bc2cbecd24d6507630e816d39d951d79e0e8aee74b89cc21b8f4155.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 35774, + "strata": [ + "notes", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 1, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 54, + "breaks": 3 + }, + "counts": { + "paragraphs": 921, + "runs": 913, + "tables": 4, + "rows": 181, + "cells": 828, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 15, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/c763ba7afa9d", + "sha256": "c763ba7afa9d0ed82605d2d9b75836edfead4c997dc716597752fe41a39ce2c9", + "url": "https://docxcorp.us/documents/6e25502b99c5912e9e000556e32454c13b4548e05dd99802f817dce95cf2edef.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 8756, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 41 + }, + "counts": { + "paragraphs": 1, + "runs": 30, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/2121773adba6", + "sha256": "2121773adba6753e2fe57e5965189cf023dceda45fbb971fbede057a490e3beb", + "url": "https://docxcorp.us/documents/340b6ccb6a52131f87161a064ea8171c35f27d8457f36873cc4d53a158bb85ee.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 9149, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 48 + }, + "counts": { + "paragraphs": 1, + "runs": 34, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/952e6904919d", + "sha256": "952e6904919d69d8b64703cb6f0a3608a186549b86bed3a5721b94e3c5a87e6c", + "url": "https://docxcorp.us/documents/54fefc0b2d0f2c9ab783796983545c85b4205115efeedceddb8f98cd4ae4c174.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 8695, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 35 + }, + "counts": { + "paragraphs": 1, + "runs": 26, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/f59891757779", + "sha256": "f59891757779d235af61758eb6f5eb3858cca00ead8bf6c311ba81b9bc81c09c", + "url": "https://docxcorp.us/documents/9cd296afd24348be5df45fd80964364e838559f058ddf6f288999b08403d494f.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 38850, + "strata": [ + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 3, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 27, + "breaks": 9 + }, + "counts": { + "paragraphs": 589, + "runs": 1209, + "tables": 7, + "rows": 91, + "cells": 347, + "sections": 3 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 9, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/b0118228f8fc", + "sha256": "b0118228f8fcaed53480eb231bf1798a37817548bad4d8ddd6dbcfc4031e8afb", + "url": "https://docxcorp.us/documents/f2b279d206bb2cbd06fec618f0cf362ec38421ec4d26430962d367aba5322ebb.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 34484, + "strata": [ + "vml", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 2, + "drawings": 0, + "altContent": 0, + "tabs": 36, + "breaks": 0 + }, + "counts": { + "paragraphs": 34, + "runs": 76, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 2, + "footers": 2, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/658285645ddd", + "sha256": "658285645ddd0dbe004fc775a840dc73c95d5edb9c1abeb4cca4a0a1280caf31", + "url": "https://docxcorp.us/documents/4d4cb512d04027c2a94986a1d6c8447e6ac89801a8f919472caef3f42e2b37d6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 726368, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 8, + "textBoxes": 1, + "math": 0, + "vml": 1, + "drawings": 1, + "altContent": 0, + "tabs": 38, + "breaks": 33 + }, + "counts": { + "paragraphs": 160, + "runs": 493, + "tables": 1, + "rows": 2, + "cells": 8, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/bd1342451a67", + "sha256": "bd1342451a673aef079abb1b13e58c9b1cf0965a03123457477c559dc52b1669", + "url": "https://docxcorp.us/documents/9a43bdd384bbfa2f5d249f937eb65be4b52f1d3c32c76f6022dde7c7210fa5aa.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 9640, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 67 + }, + "counts": { + "paragraphs": 1, + "runs": 59, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/0b5766a50ae4", + "sha256": "0b5766a50ae4cee6080f2d9dea190650e56d1a73b2d8ea3b90dcd61d52599002", + "url": "https://docxcorp.us/documents/611e6dffab12df8d355f5a10f9fa238c36fbafb38ad3e0ae003643cf3f127c68.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 9282, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 55 + }, + "counts": { + "paragraphs": 1, + "runs": 40, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/89526ea53516", + "sha256": "89526ea5351660a4dc6f5d3fa2feb0e1c584dbabf14c418f4e4c5eeccd1b3777", + "url": "https://docxcorp.us/documents/9254e307fa58e2c8b45049ef9e0e001a9da2deea70cb12751217774d928075eb.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 9317, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 57 + }, + "counts": { + "paragraphs": 1, + "runs": 42, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/587532fd42c7", + "sha256": "587532fd42c78693b3cd698c7670b02ce70f2044452790db0ca5f0ca11e46b43", + "url": "https://docxcorp.us/documents/1ca0f56b7208efc088b6a277e3bad8bd74e88a65bd72ee51608f7873b391c737.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 686812, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 8, + "textBoxes": 1, + "math": 0, + "vml": 1, + "drawings": 2, + "altContent": 0, + "tabs": 79, + "breaks": 2 + }, + "counts": { + "paragraphs": 244, + "runs": 402, + "tables": 2, + "rows": 4, + "cells": 10, + "sections": 3 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/6b8af2373491", + "sha256": "6b8af2373491d1860d43f899b41ddfb69ce749e325fef0910fae705149ecff78", + "url": "https://docxcorp.us/documents/5885d53ac25a4296838c32c92cfc10fd8b7ab38df66c946803edce0f6d369fde.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 146288, + "strata": [ + "drawings", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 1, + "altContent": 0, + "tabs": 30, + "breaks": 0 + }, + "counts": { + "paragraphs": 34, + "runs": 243, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 2, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/f6eaf16b3bd4", + "sha256": "f6eaf16b3bd426341f0bd94a67bdf1ec9a59970aca015797209a5cafc57a2a90", + "url": "https://docxcorp.us/documents/1a1c993567cd2a3252bfbd57a6e7d512ac56b9cfb87d550fd4a1d9f47f009ddd.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 9321, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 56 + }, + "counts": { + "paragraphs": 1, + "runs": 46, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/f2ba40a38210", + "sha256": "f2ba40a382105adc2bfcc09e3d5d5a181c4de8340f8bae5a630a73539229057d", + "url": "https://docxcorp.us/documents/b77e19b8c9ccbacc808866029769dc93b2c8dc321a61644ebc6f1566f6044d6c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 9323, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 56 + }, + "counts": { + "paragraphs": 1, + "runs": 46, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": true, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/6020c71dd259", + "sha256": "6020c71dd259f818a0bdc4fc6b043144073eb900bf88360b73813beb76c18e73", + "url": "https://docxcorp.us/documents/7f759c950a29d04a701e1a0231c7d35d9c251a8e04993eb7b009c2af1166d9b6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 16909, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 47, + "runs": 98, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 6, + "externalRelationships": 1, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/27a2e43b56dd", + "sha256": "27a2e43b56dd8c90efc9fdca509bf63e9c9d171cbc48cc9c5959e180cd3836f8", + "url": "https://docxcorp.us/documents/d54a0ded8f989cf1082a915b62b29acc8f9691349f99101d074982bb9fb8b38a.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 686866, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 8, + "textBoxes": 1, + "math": 0, + "vml": 1, + "drawings": 2, + "altContent": 0, + "tabs": 79, + "breaks": 2 + }, + "counts": { + "paragraphs": 245, + "runs": 410, + "tables": 2, + "rows": 4, + "cells": 10, + "sections": 3 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/4dcd45900935", + "sha256": "4dcd45900935e4f8d58db8e38704944a4589747cab391b088ba570052e6357e5", + "url": "https://docxcorp.us/documents/aea463f06e6a9565b0619e63beedec0822b7ba1f114c626b123be205caa359b6.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 687292, + "strata": [ + "text-boxes", + "vml", + "drawings", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 8, + "textBoxes": 1, + "math": 0, + "vml": 1, + "drawings": 2, + "altContent": 0, + "tabs": 82, + "breaks": 2 + }, + "counts": { + "paragraphs": 245, + "runs": 429, + "tables": 2, + "rows": 4, + "cells": 10, + "sections": 3 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 0, + "docType": "technical", + "lang": "en" + }, + { + "id": "superdoc/9ab75f89751c", + "sha256": "9ab75f89751cd753608bc3e6cb392fa1ab9731d32038835d62b1724a409a81df", + "url": "https://docxcorp.us/documents/dd07019298e28cb42e45f9c9d12a1f720ff698401a6c0595d26ee570e0787d69.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 31943, + "strata": [ + "text-boxes", + "vml", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 1, + "textBoxes": 8, + "math": 0, + "vml": 8, + "drawings": 0, + "altContent": 0, + "tabs": 2, + "breaks": 1 + }, + "counts": { + "paragraphs": 55, + "runs": 150, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 1, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 1, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/e67b3f7c5a5f", + "sha256": "e67b3f7c5a5f258b3caef8a00fc6c4b4086e3e043a08ac4c64047f68e092d82a", + "url": "https://docxcorp.us/documents/0dff1dce09a7da3e4d345d2c16d31ada13556bb87109f5c3a8cef057726c09e2.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 16768, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 5 + }, + "counts": { + "paragraphs": 13, + "runs": 76, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 8, + "externalRelationships": 2, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/c2c8c9bb044c", + "sha256": "c2c8c9bb044cc36b0889eca0fb879515abc62b28892c6e4bb94d3da0b75fe41b", + "url": "https://docxcorp.us/documents/3ca8e41ecabaf827b6e17cde21f8bab787a2b7dd48abc2de02e3da3e82180ec7.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 132637, + "strata": [ + "content-controls", + "text-boxes", + "vml", + "drawings", + "tables", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 11, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 72, + "bookmarks": 73, + "textBoxes": 2, + "math": 0, + "vml": 1, + "drawings": 3, + "altContent": 1, + "tabs": 160, + "breaks": 73 + }, + "counts": { + "paragraphs": 1446, + "runs": 1505, + "tables": 2, + "rows": 2, + "cells": 4, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 15, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/52383c78b488", + "sha256": "52383c78b488fed3f78fd427fc7c08029a7fb999c806ffab13b16487f054307d", + "url": "https://docxcorp.us/documents/0d80ae38b61e711ef454c71d20780923690b9cad64b61861ec09d6832c776b14.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 42960, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 47, + "runs": 108, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 1, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/da8fbf9bc1b3", + "sha256": "da8fbf9bc1b38b343fc0f312be55226292de25a7ff85982f19ac9d73781f47ee", + "url": "https://docxcorp.us/documents/7353ad9806cd507caba343fe6c9bccc88f5de37109a710d34a0ead7e8378f6f3.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 15764, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 63, + "runs": 91, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/751afc2de1b2", + "sha256": "751afc2de1b25af7916640e8149b0335617a6bb83201ec73d17dbf8f34b83301", + "url": "https://docxcorp.us/documents/41fe0c06b8e0f30738158ae88af0ee92d41c2aa1c9432bd1c200b0231f37d271.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 27489, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 86, + "runs": 788, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 1, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/9765f94bfe34", + "sha256": "9765f94bfe34315bc62dafe3494626e1b893fb56f1ea74066fce5107fe5a65c4", + "url": "https://docxcorp.us/documents/10e27b63de0e70510108dd0abfd7eb3ae570199eed66bf8415b173212a7f0964.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 15609, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 63, + "runs": 85, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/6ce71ced120e", + "sha256": "6ce71ced120e9695f29c151c1a60f10dea7feb7a1d9d5dc01103acf0672fe73c", + "url": "https://docxcorp.us/documents/9ab8b270a3fd8c55d1928556fbb1664bdfcfd97adc1b3141614f42117327ada8.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 42563, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 50, + "runs": 93, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 1, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/e0a2594052eb", + "sha256": "e0a2594052eb5cd78e561dd8122401abf2010c4b699127d8fa8b60f1936aa3c5", + "url": "https://docxcorp.us/documents/e21da51f55980597bbcef1c66d612328b56095d708c953d65edacb21b3f4aa59.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 799115, + "strata": [ + "drawings", + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 9, + "altContent": 0, + "tabs": 9, + "breaks": 0 + }, + "counts": { + "paragraphs": 69, + "runs": 297, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 5 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 8 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 20, + "externalRelationships": 1, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/d04ed154c965", + "sha256": "d04ed154c965215d9315b81c9c112c90fa9e2f495c20b6e62140403bd806fa6e", + "url": "https://docxcorp.us/documents/ce40903d64e3f049b1dd4f628b5ecc5fd8f956f0b38a94d87d836605a168378a.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 28389, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 15, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 9 + }, + "counts": { + "paragraphs": 81, + "runs": 166, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 22, + "externalRelationships": 15, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/95e09dd68a4d", + "sha256": "95e09dd68a4d07d6a5ada0f73a3647ed77b5974f78ca134dcd3d5507423ce304", + "url": "https://docxcorp.us/documents/1f0b367ccc97ec51dae0040975b2b91fd1bffe39b22a678b868afef85a29ccb8.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 1471697, + "strata": [ + "text-boxes", + "vml", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 68, + "math": 0, + "vml": 58, + "drawings": 39, + "altContent": 39, + "tabs": 0, + "breaks": 1 + }, + "counts": { + "paragraphs": 70, + "runs": 202, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 8 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 15, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/4e587dbb57ee", + "sha256": "4e587dbb57eebe02d5cdfd15d6f0529def76cca4f73398064451a12ce2223ede", + "url": "https://docxcorp.us/documents/d748718fd15c972243c49ab3d771b4a87e8bbd708ad2eb48ea8b5d80af627d80.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 15476, + "strata": [ + "plain-body" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 63, + "runs": 82, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 5, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/a03a3ffaf834", + "sha256": "a03a3ffaf834fe9db220a11079810229e076b8634a9488c2ca5899dc8a717f60", + "url": "https://docxcorp.us/documents/cf0646d27273a8a11138959404a5bb240c77abf01e788ad6432c3b8e1c7039d5.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 748399, + "strata": [ + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 3, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 19, + "runs": 40, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 13, + "externalRelationships": 3, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/7d27371a1ba9", + "sha256": "7d27371a1ba993080ca0538b86ca7facf5ec55a2c0068fb6d80830f170271dcb", + "url": "https://docxcorp.us/documents/d549d77c87569e84c04293dea4daaa5f3a6ddcee61abd90598a9fdac2d081cdb.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 42725, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 1, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 42, + "runs": 99, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 1, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/355e8868ac32", + "sha256": "355e8868ac3296ae9ca6439f2d270526e41ee434140ed2bd4d21759ae128c52e", + "url": "https://docxcorp.us/documents/375186a969d39c541b6aaa966bdc88b5f071c80c6633436fa65a483fb4f4b636.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 16266, + "strata": [ + "fields" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 19, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 4 + }, + "counts": { + "paragraphs": 20, + "runs": 115, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 7, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/6cb55bd72cf7", + "sha256": "6cb55bd72cf7e672305156500657e8184e3bb0e5c7fc8d67d9f2a153b90a68a2", + "url": "https://docxcorp.us/documents/5b71044bd3784c4ee7ee29ed7ed8d6d67210e349d5b5ab46f99badc9d58058d0.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 100157, + "strata": [ + "drawings", + "headers-footers", + "embedded-objects" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 3, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 55, + "runs": 232, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 1, + "media": 5 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 14, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/7aa6dcf558d2", + "sha256": "7aa6dcf558d202583f463f186daf5b97dfc816b8dc4f516045914427c8acc01c", + "url": "https://docxcorp.us/documents/2236d00cb30c70ffb6c176282aa5320b833b2d3dc37d5d69202ad03c335ba466.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 270801, + "strata": [ + "multi-section", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 7, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 16, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 243, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 2 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 1, + "footers": 1, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 17, + "externalRelationships": 7, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/3e6f1d9005cc", + "sha256": "3e6f1d9005ccead3deef08f10bb96cae59e9ae3410ccbc44d7c8d7239ed42440", + "url": "https://docxcorp.us/documents/f46e8387bcec71bb5e743047c41ad9c414925515c5b4052597b4688d550eadc9.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 291491, + "strata": [ + "vml", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 0, + "math": 0, + "vml": 1, + "drawings": 5, + "altContent": 1, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 26, + "runs": 33, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 4 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/abb3aa2f54b2", + "sha256": "abb3aa2f54b2ccee530f6960ce6f0b43e100bfe71f77b8373c3c68254f31103e", + "url": "https://docxcorp.us/documents/57e7469c9358aa104a98fe4df79cda87b3c3b9f3d2903aa7552334c46431757d.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 601751, + "strata": [ + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 9, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 24, + "altContent": 0, + "tabs": 23, + "breaks": 14 + }, + "counts": { + "paragraphs": 276, + "runs": 284, + "tables": 4, + "rows": 21, + "cells": 110, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 3, + "footers": 3, + "embeddedObjects": 0, + "media": 0 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 43, + "externalRelationships": 5, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/40e6067477b6", + "sha256": "40e6067477b6b72b3835682e4f5a35de13eef122417a8076a0d6099d9fbac4cb", + "url": "https://docxcorp.us/documents/7ded062113e47181361c87b5deda2a751f7f2f384e23d4092e8bb4944ebb558c.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 42045, + "strata": [ + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 2, + "bookmarks": 0, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 0, + "altContent": 0, + "tabs": 0, + "breaks": 0 + }, + "counts": { + "paragraphs": 40, + "runs": 80, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 1, + "footers": 0, + "embeddedObjects": 0, + "media": 1 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 11, + "externalRelationships": 2, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/4b94df12d96f", + "sha256": "4b94df12d96fc767436a44e5e9f9e634c22bf1c8bd8ccf76153f0c6d83244451", + "url": "https://docxcorp.us/documents/26ac9943631fbcdae261268d5034d6876b966080feaccc0be3bdbd76619d66bc.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 236245, + "strata": [ + "drawings", + "tables", + "headers-footers" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 12, + "bookmarks": 14, + "textBoxes": 0, + "math": 0, + "vml": 0, + "drawings": 2, + "altContent": 0, + "tabs": 9, + "breaks": 4 + }, + "counts": { + "paragraphs": 256, + "runs": 282, + "tables": 5, + "rows": 40, + "cells": 128, + "sections": 1 + }, + "parts": { + "footnotes": true, + "endnotes": true, + "comments": false, + "commentsExtended": false, + "numbering": true, + "styles": true, + "settings": true, + "headers": 0, + "footers": 2, + "embeddedObjects": 0, + "media": 2 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 24, + "externalRelationships": 12, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/b3f85395ddbc", + "sha256": "b3f85395ddbce8710c9d076e6021430c7b520647107c8c516be791d4d2f8edc1", + "url": "https://docxcorp.us/documents/bfbec91346809e17a447d3cb5a6c03db992d90b1c2134d12cc36109cdb99c4d7.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 4621007, + "strata": [ + "text-boxes", + "vml", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 18, + "math": 0, + "vml": 16, + "drawings": 14, + "altContent": 12, + "tabs": 0, + "breaks": 7 + }, + "counts": { + "paragraphs": 47, + "runs": 71, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 4 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "superdoc/8842853275ea", + "sha256": "8842853275eac89361dbcced085bf926afe5ab32cb5f1f085d65c79c2a448f39", + "url": "https://docxcorp.us/documents/e2d62c2eeb84564eae8c127ef158ce8da3453b674d0d7f58716afb27f4908ead.docx", + "source": "superdoc-docx-corpus", + "license": "ODC-BY-1.0 (database); underlying document rights unverified", + "bytes": 5006429, + "strata": [ + "text-boxes", + "vml", + "drawings" + ], + "features": { + "ins": 0, + "del": 0, + "move": 0, + "rPrChange": 0, + "pPrChange": 0, + "sectPrChange": 0, + "tblRowChange": 0, + "footnoteRefs": 0, + "endnoteRefs": 0, + "commentRefs": 0, + "sdt": 0, + "fldSimple": 0, + "instrText": 0, + "hyperlinks": 0, + "bookmarks": 1, + "textBoxes": 20, + "math": 0, + "vml": 14, + "drawings": 9, + "altContent": 7, + "tabs": 0, + "breaks": 19 + }, + "counts": { + "paragraphs": 55, + "runs": 90, + "tables": 0, + "rows": 0, + "cells": 0, + "sections": 1 + }, + "parts": { + "footnotes": false, + "endnotes": false, + "comments": false, + "commentsExtended": false, + "numbering": false, + "styles": true, + "settings": true, + "headers": 0, + "footers": 0, + "embeddedObjects": 0, + "media": 4 + }, + "readable": true, + "strict": false, + "revisionAuthorCount": 0, + "relationshipCount": 10, + "externalRelationships": 0, + "docType": "creative", + "lang": "en" + }, + { + "id": "lo-fuzzer-seeds/a487fb7061c7", + "sha256": "a487fb7061c704564881839e450267de811411fb68786560499ae5e9fe1968bf", + "url": "https://dev-www.libreoffice.org/corpus/docxfuzzer_seed_corpus.zip", + "source": "libreoffice-fuzzer-seeds", + "license": "published fuzzing corpus (The Document Foundation); underlying document rights unverified - local testing only, bytes never committed", + "container": "zip", + "strata": [ + "fuzz-seeds" + ] + } +] \ No newline at end of file diff --git a/scripts/corpus/fetch_differential_corpus.mjs b/scripts/corpus/fetch_differential_corpus.mjs new file mode 100644 index 00000000..e08c8c0b --- /dev/null +++ b/scripts/corpus/fetch_differential_corpus.mjs @@ -0,0 +1,130 @@ +#!/usr/bin/env node +/** + * Fetch the SHA-256-pinned differential-testing corpus into a local cache. + * + * Extends the `scripts/prepare_real_comparison_corpus.mjs` pattern: the committed + * artifact is `differential-corpus-manifest.json` (hashes, URLs, licenses, and the + * derived feature index produced by `classify_docx_features.mjs`); document BYTES are + * never committed and are cached only under the directory given on the command line + * (conventionally exported as `SAFE_DOCX_DIFF_CORPUS_DIR`). + * + * Sources and their resolution: + * - https URLs downloaded (3 attempts), SHA-256 verified, cached as + * `//.docx`. + * - docx-platform-tests: copied from a local clone; set DOCX_PLATFORM_TESTS_DIR + * (the repo is not publicly fetchable). + * - container: "zip" the archive is downloaded + verified, then its members are + * extracted under `//`. + * + * Licensing note (see the corpus report): only open-agreements (CC-BY-4.0), + * docx-platform-tests (Apache-2.0), and open-xml-sdk (MIT) grant redistribution of the + * documents themselves. The LibreOffice fuzzer seeds and the SuperDoc docx-corpus + * entries are LOCAL TESTING ONLY: their collection licenses (MPL-2.0 / ODC-BY) do not + * establish rights in the underlying third-party documents, so nothing beyond hash, + * URL, and derived feature flags may enter the repository for them. + * + * Usage: + * node scripts/corpus/fetch_differential_corpus.mjs "$SAFE_DOCX_DIFF_CORPUS_DIR" [--source NAME] + */ + +import { createHash } from 'node:crypto'; +import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'node:fs'; +import { dirname, join } from 'node:path'; +import { fileURLToPath } from 'node:url'; +import JSZip from 'jszip'; + +const SCRIPT_DIR = dirname(fileURLToPath(import.meta.url)); +const MANIFEST_PATH = join(SCRIPT_DIR, 'differential-corpus-manifest.json'); + +const args = process.argv.slice(2); +const destinationRoot = args[0]; +const sourceFilter = (() => { + const i = args.indexOf('--source'); + return i >= 0 ? args[i + 1] : null; +})(); + +if (!destinationRoot) { + console.error('Usage: node scripts/corpus/fetch_differential_corpus.mjs [--source NAME]'); + process.exit(2); +} + +const SOURCE_DIRS = { + 'open-agreements': 'open-agreements', + 'docx-platform-tests': 'docx-platform-tests', + 'open-xml-sdk': 'open-xml-sdk', + 'superdoc-docx-corpus': 'superdoc', + 'libreoffice-fuzzer-seeds': 'lo-fuzz-seeds', +}; + +const manifest = JSON.parse(readFileSync(MANIFEST_PATH, 'utf8')); +const sha256 = (buffer) => createHash('sha256').update(buffer).digest('hex'); + +async function downloadWithRetry(url) { + let lastError; + for (let attempt = 1; attempt <= 3; attempt += 1) { + try { + const response = await fetch(url, { signal: AbortSignal.timeout(120_000) }); + if (!response.ok) throw new Error(`HTTP ${response.status} ${response.statusText}`); + return Buffer.from(await response.arrayBuffer()); + } catch (error) { + lastError = error; + console.warn(`[diff-corpus] download attempt ${attempt}/3 failed: ${error}`); + } + } + throw lastError; +} + +async function resolveBytes(entry) { + if (entry.url.startsWith('docx-platform-tests:')) { + const root = process.env.DOCX_PLATFORM_TESTS_DIR; + if (!root) throw new Error(`${entry.id}: set DOCX_PLATFORM_TESTS_DIR to a local docx-platform-tests clone`); + const rel = entry.url.slice('docx-platform-tests:'.length).split('@')[0]; + return readFileSync(join(root, rel)); + } + return downloadWithRetry(entry.url); +} + +let verified = 0; +let fetched = 0; +let failed = 0; + +for (const entry of manifest) { + if (sourceFilter && entry.source !== sourceFilter) continue; + const dir = join(destinationRoot, SOURCE_DIRS[entry.source] ?? entry.source); + const ext = entry.container === 'zip' ? 'zip' : 'docx'; + const destination = join(dir, `${entry.sha256}.${ext}`); + if (existsSync(destination) && sha256(readFileSync(destination)) === entry.sha256) { + verified += 1; + continue; + } + let bytes; + try { + bytes = await resolveBytes(entry); + } catch (error) { + failed += 1; + console.error(`[diff-corpus] ${entry.id}: fetch failed: ${error}`); + continue; + } + const actual = sha256(bytes); + if (actual !== entry.sha256) { + failed += 1; + console.error(`[diff-corpus] ${entry.id}: SHA-256 mismatch (expected ${entry.sha256}, got ${actual}); refusing to cache`); + continue; + } + mkdirSync(dir, { recursive: true }); + writeFileSync(destination, bytes); + if (entry.container === 'zip') { + const zip = await JSZip.loadAsync(bytes); + for (const [name, file] of Object.entries(zip.files)) { + if (file.dir) continue; + const memberPath = join(dir, name.replaceAll('..', '_')); + mkdirSync(dirname(memberPath), { recursive: true }); + writeFileSync(memberPath, await file.async('nodebuffer')); + } + } + fetched += 1; + console.log(`[diff-corpus] cached verified ${entry.id}`); +} + +console.log(`[diff-corpus] done: ${verified} verified in cache, ${fetched} fetched, ${failed} failed`); +if (failed > 0) process.exit(1); diff --git a/scripts/corpus/generate_oom_repro.mjs b/scripts/corpus/generate_oom_repro.mjs new file mode 100644 index 00000000..674ae897 --- /dev/null +++ b/scripts/corpus/generate_oom_repro.mjs @@ -0,0 +1,79 @@ +#!/usr/bin/env node +/** + * Deterministic synthetic reproduction for the quadratic-memory comparison blowup. + * + * `computeAtomLcs` (packages/docx-compare/src/baselines/atomizer/atomLcs.ts) allocates a + * full `(n+1) x (m+1)` nested-array dynamic-programming matrix, where n and m are the + * text-atom counts of the two documents. The allocation is unconditional — no size cap + * and no linear-space (Hirschberg) fallback — so a SINGLE paragraph carrying a few + * thousand atoms drives a comparison (self-comparison included) into V8 heap exhaustion + * ("Ineffective mark-compacts near heap limit / JavaScript heap out of memory"), a + * denial-of-service on ordinary Word-authored content. + * + * This file emits a self-contained DOCX with ONE paragraph of `--atoms` space-separated + * invented tokens (no real or customer text). It carries no revision markup — the blowup + * is in alignment, not in tracked-change handling. Discovered via the LibreOffice + * docx-fuzzer seed `moz1333610-1.docx` (a ~200 KB single-paragraph crash-report dump); + * the token content there is irrelevant, only the atom count matters. + * + * Usage: + * node scripts/corpus/generate_oom_repro.mjs [--atoms N] [--out path.docx] + * + * Measured thresholds (self-comparison, inplace mode): + * - ~1500 atoms completes in well under 100 ms; + * - ~12000 atoms exhausts a 2 GB worker heap; + * - the originating fuzzer seed (~6000 atoms across 53 runs) exhausts the default + * ~4 GB heap. + * Doubling the atom count roughly triples wall time — the O(n*m) signature. + * + * Suggested acceptance check once a fix lands (linear-space DP or a bounded refusal): + * node --max-old-space-size=2048 -e "compareDocuments(buf, buf)" // must NOT OOM + * with `--atoms 12000`: the fix should make large atom counts either compare in bounded + * memory or fail closed with an actionable error — never exhaust the heap. + * + * @see https://github.com/UseJunior/safe-docx/issues/874 + */ +import { writeFileSync } from 'node:fs'; +import JSZip from 'jszip'; + +const args = process.argv.slice(2); +const atomCount = Number(args[args.indexOf('--atoms') + 1] ?? 12000); +const outPath = args.includes('--out') ? args[args.indexOf('--out') + 1] : null; + +// Deterministic invented tokens: a small vocabulary repeated, which also stresses the +// repeated-text alignment path (equal atoms are the worst case for the traceback). +const VOCAB = ['lorem', 'ipsum', 'dolor', 'amet', 'consectetur', 'adipiscing', 'elit', 'sed', 'eiusmod', 'tempor']; +const tokens = Array.from({ length: atomCount }, (_, i) => VOCAB[i % VOCAB.length] + (i % 97)); +const bodyText = tokens.join(' '); + +const documentXml = + '' + + '' + + '' + bodyText + '' + + ''; + +const zip = new JSZip(); +zip.file('[Content_Types].xml', + '' + + '' + + '' + + '' + + '' + + ''); +zip.file('_rels/.rels', + '' + + '' + + '' + + ''); +zip.file('word/_rels/document.xml.rels', + '' + + ''); +zip.file('word/document.xml', documentXml); + +const buf = await zip.generateAsync({ type: 'nodebuffer' }); +if (outPath) { + writeFileSync(outPath, buf); + console.log(`wrote ${outPath} (${buf.length} bytes, ${atomCount} atoms)`); +} else { + process.stdout.write(buf); +}