introspector/retro-sync
Retro-Sync: Hurrian Hymn h.6 — 71-Shard NFT Collection The world's oldest surviving notated music (~1400 BC, Ugarit) encoded as a multi-layered NFT collection with ZK proofs and steganographic embedding. Collection 71 DA51 CBOR shards — one for each integer 1..71 (the crown prime). 20 generator shards (primes ≤ 71) carry the SSP interval structure. 51 derived shards (composites) carry content determined by prime factorization. Layer Content Format… See the full description on the dataset page: https://huggingface.co/datasets/introspector/retro-sync.
Retro-Sync: Hurrian Hymn h.6 — 71-Shard NFT Collection
The world's oldest surviving notated music (~1400 BC, Ugarit) encoded as a multi-layered NFT collection with ZK proofs and steganographic embedding.
Collection
71 DA51 CBOR shards — one for each integer 1..71 (the crown prime). 20 generator shards (primes ≤ 71) carry the SSP interval structure. 51 derived shards (composites) carry content determined by prime factorization.
Structure
shards/ # 595 erdfa CFT-decomposed shards
nft71/ # 71 DA51 CBOR shards (real data, 11.2 MB)
├── 01.cbor # reserved
├── 02.cbor # ★ nīš tuḫrim (p2)
├── ...
├── 10.cbor # WAV audio (8.4 MB base64)
├── ...
├── 71.cbor # ★ colophon/crown (p71)
└── manifest.json
proof/
└── nft71_proof.json # Groth16 proof
witnesses/
└── hurrian_h6_witness.jsonDecoding
Each shard is a DA51-tagged CBOR envelope:
- Bytes 0-1:
0xDA 0x51(magic) - Bytes 2-9: SHA-256 prefix (CID stub)
- Bytes 10+: CBOR payload
import cbor2, json
with open("nft71/02.cbor", "rb") as f:
raw = f.read()
magic = raw[:2] # b'\xda\x51'
cid = raw[2:10].hex()
payload = cbor2.loads(raw[10:])
print(json.dumps(payload, indent=2))ZK Verification
The Groth16 proof verifies:
- Prover knows all 71 shard hashes
- All form a valid MiMC Merkle tree
- Eigenspace commitment matches (100% Earth)
- Crown shard (p71) is unique
License
AGPL-3.0-or-later. The underlying Hurrian composition is public domain (~3400 years old).
