Sign in
← All matches
✅ Cryptographically verified · sealed pick #337

Augnablik W vs Vestri W

2. Deild Women · Iceland · 04 Jul 2026, 14:00 UTC

Final score
0 : 6
Result
Won
Pick
Vestri W
Market
1x2
Model prob.
91.7%
Best price
1.19
Min odds
1.14
Stake factor
1.70

Proof this pick was locked in before kickoff

The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.

Encrypted pick (AES-256-GCM)
YJLuZfHnWo+64o5QkcUCXc0MKwj7lYy/7DYh501/ZoeNSmakdM2L85ilLzdXt32ZHDtLTRR/gIIJZk8h0O0K4xE1Rj/C4XFnUmsTqT0XWXoix0vDnQBwlgt3jjgXQnt1EeZMNf+nIqcxqnplApChB4bZ6IC5d6GpU37DXK3Hcm8tqtbwFFMIil8TnMyhLmKAKQ2SIjodGxtGPlZAhoLkAuQaryDHdinwt5scRwpNyuUuoHVqGWl7XrWx8vFEHpavelz88RtrHPJxRIc9tZ19te1PH7eVfQGwzV1+/KiQ8qm1XJHG6aWOgCULxxpnQCTzsZtx9vI07QgWWDXDZlWIwkzg3x7mHX1V
key fingerprint sha256: 74185638dcce0ad12db28e73e8df263964e98e03a2411dae1b2e03e73bf215a8
Decrypt it & read the pick
Decryption key (released after the match)
79d9fa8fe34b81fb84bbd424ec9c507c961c4bde25751ee557c1a8776ee1d56f
Decrypt in CyberChef →
Verify it yourself — paste both values, no install

The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ), AES-256-GCM. Zero-install check: open your browser console (press F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("YJLuZfHnWo+64o5QkcUCXc0MKwj7lYy/7DYh501/ZoeNSmakdM2L85ilLzdXt32ZHDtLTRR/gIIJZk8h0O0K4xE1Rj/C4XFnUmsTqT0XWXoix0vDnQBwlgt3jjgXQnt1EeZMNf+nIqcxqnplApChB4bZ6IC5d6GpU37DXK3Hcm8tqtbwFFMIil8TnMyhLmKAKQ2SIjodGxtGPlZAhoLkAuQaryDHdinwt5scRwpNyuUuoHVqGWl7XrWx8vFEHpavelz88RtrHPJxRIc9tZ19te1PH7eVfQGwzV1+/KiQ8qm1XJHG6aWOgCULxxpnQCTzsZtx9vI07QgWWDXDZlWIwkzg3x7mHX1V"), c => c.charCodeAt(0));
const key  = Uint8Array.from("79d9fa8fe34b81fb84bbd424ec9c507c961c4bde25751ee557c1a8776ee1d56f".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
  .then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
  .then(b => console.log(new TextDecoder().decode(b)));

Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:

  • Algorithm: AES-256-GCM
  • Key (hex): 79d9fa8fe34b81fb84bbd424ec9c507c961c4bde25751ee557c1a8776ee1d56f
  • IV / nonce (hex): 6092ee65f1e75a8fbae28e50
  • Ciphertext (hex): 91c5025dcd0c2b08fb958cbfec3621e74d7f66878d4a66a474cd8bf398a52f3757b77d991c3b4b4d147f808209664f21d0ed0ae31135463fc2e17167526b13a93d17597a22c74bc39d0070960b778e3817427b7511e64c35ffa722a731aa7a650290a10786d9e880b977a1a9537ec35cadc7726f2daad6f01453088a5f139ccca12e6280290d92223a1d1b1b463e56408682e402e41aaf20c77629f0b79b1c470a4dcae52ea0756a19697b5eb5b1f2f1441e96af7a5cfcf11b6b1cf27144873db59d7db5ed4f1fb7957d01b0cd5d7efca890f2a9b55c91c6e9a58e80250bc71a674024f3b19b71f6f234ed08
  • Auth tag (hex): 165835c3665588c24ce0df1ee61d7d55

Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.

How to verify the Bitcoin timestamp yourself

Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated transactions) — you verify it with the .ots proof and any OpenTimestamps tool:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #956622 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.

Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.