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

Nardo vs Molde II

3. Division - Group 2 · Norway · 03 Aug 2026, 16:00 UTC

Final score
3 : 0
Result
Won
Pick
Nardo
Market
1x2
Model prob.
53.8%
Best price
2.12
Min odds
2.01
Stake factor
2.10

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)
QN2wzvsZnlyVzPKsWtHemMIXEyrECY7/MiKCmiHaHPKXzflR4rJ+GCzjHTf7cFszL3A8UuRO38809lufk3UyZxhLm5mCBH6YS2KBUviRify2qKChFiJ8JgTwbkxWNkUxE6srR6TRN4qAQHOyb4qmMhqIEtNV9R4s9zSZmzpwPEV6tBKKXpp411SpeqOA8CM+gHol4rNqMKtrTUlZE4WjZYsBvvVEAfABXxC3RADw6fGDN4OjjkAS14uQ6euEpEa6yvp7fDPDIUMMxOWtYQ2RDBJSjlo99K6ctt+lxu9b65kA7GQOiJzpbQRrEn3tgEcD1Viif5fKwqf3jRebRbbuuSOPUwIkmw==
key fingerprint sha256: bd18c3d32821ac42528b807242f7e32c6c804c882e2bfaf512d00ca24b068ea9
Decrypt it & read the pick
Decryption key (released after the match)
3f531f06d6f6eb97631b73bcee9a1352e46be22dd110db57cf4974660a190084
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("QN2wzvsZnlyVzPKsWtHemMIXEyrECY7/MiKCmiHaHPKXzflR4rJ+GCzjHTf7cFszL3A8UuRO38809lufk3UyZxhLm5mCBH6YS2KBUviRify2qKChFiJ8JgTwbkxWNkUxE6srR6TRN4qAQHOyb4qmMhqIEtNV9R4s9zSZmzpwPEV6tBKKXpp411SpeqOA8CM+gHol4rNqMKtrTUlZE4WjZYsBvvVEAfABXxC3RADw6fGDN4OjjkAS14uQ6euEpEa6yvp7fDPDIUMMxOWtYQ2RDBJSjlo99K6ctt+lxu9b65kA7GQOiJzpbQRrEn3tgEcD1Viif5fKwqf3jRebRbbuuSOPUwIkmw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3f531f06d6f6eb97631b73bcee9a1352e46be22dd110db57cf4974660a190084".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): 3f531f06d6f6eb97631b73bcee9a1352e46be22dd110db57cf4974660a190084
  • IV / nonce (hex): 40ddb0cefb199e5c95ccf2ac
  • Ciphertext (hex): 5ad1de98c217132ac4098eff3222829a21da1cf297cdf951e2b27e182ce31d37fb705b332f703c52e44edfcf34f65b9f93753267184b9b9982047e984b628152f89189fcb6a8a0a116227c2604f06e4c5636453113ab2b47a4d1378a804073b26f8aa6321a8812d355f51e2cf734999b3a703c457ab4128a5e9a78d754a97aa380f0233e807a25e2b36a30ab6b4d49591385a3658b01bef54401f0015f10b74400f0e9f1833783a38e4012d78b90e9eb84a446bacafa7b7c33c321430cc4e5ad610d910c12528e5a3df4ae9cb6dfa5c6ef5beb9900ec640e889ce96d046b127ded804703d558a27f97ca
  • Auth tag (hex): c2a7f78d179b45b6eeb9238f5302249b

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 #960824 · 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.