audit log

cryptographic integrity chain for all 12,351 mojave-wmdp artifacts. hash-linked, append-only, individually verifiable. query the chain directly below.

chain overview

12,351 sealed artifacts
3 benchmarks
3 card tiers
SHA-256 hash algorithm

chain explorer

loading DuckDB-WASM…

artifact tiers

overall cards 3
full Sobol' decomposition per benchmark. all first-order and total-effect indices, Borgonovo δ, diagnostics.
slice cards 60
20 per benchmark. per-axis-value conditional accuracy.
mass cell cards 12,288
4,096 per benchmark. individual Saltelli cells with exact perturbation config and accuracy.

anatomy of a seal

every pdf run card carries two cryptographic elements, printed on the card itself:

companion data hash
sha-256 of the source json used to generate the card. ties the visual artifact to its exact input data.
audit chain seal
entry in a hash-linked append-only chain:
  • seq — monotonically increasing position
  • parent_hash — sha-256 of previous entry (tamper-evident link)
  • entry_hash — hash of this entry (becomes next entry's parent)
  • timestamp — utc sealing time

the chain is append-only: inserting, removing, or reordering entries breaks all subsequent chain tip hashes. cherry-picking is structurally impossible.

verification

# verify a single artifact sha256sum source_data.json # compare with companion hash printed on the pdf mojave audit verify --seq <N> --artifact-hash <hash> # verify full chain integrity mojave audit verify-chain

guarantees

propertymechanism
no cherry-pickingall 12,351 artifacts in one chain. removing any entry breaks the chain.
no post-hoc modificationcompanion hash ties each card to exact source data.
fixed orderinghash links make reordering detectable.
completenesschain length = 12,351. gaps are visible.

source

mojave CLI: mojave audit seal, mojave audit verify, mojave audit verify-chain.