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

Dunfermline Athletic vs Dumbarton

League Cup · Scotland · 14 Jul 2026, 18:45 UTC

Final score
4 : 1
Result
Won
Pick
Dunfermline Athletic
Market
1x2
Model prob.
77.7%
Best price
1.40
Min odds
1.36
Stake factor
1.60

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)
wMw8vRFMK7qDGjL+xw89uzoXulGP/I9NEEBqsP8qX/mA3geii829v5xwh3IsKluNx1l2BTL0MHdzPolgNq0sTlI8c6cjCiuyZY+DKuZZC7zVxN6tM9JqYdFSMRnxpyGisEv7VIc/M9poBX7SifqP39AK2vcqXFkHpX4PFkvECqy6o1oRFkyHFaAvmfeHGW/9Hc7SudinUlhKUwGyKNqhBnKSeoyzh6zS+qRJym7PrUCaE4+nYTsHiCkvae+CACZoTJv6DhE9DRGpKQifBm1ksYP5Bjn3FHV0aIHP5b7V/+JqDowuVoRU3BqsG7XTbYNX8HMdBfd7Ozre7Yk5T8WWs7uUtzrEVzDHSNWztlkzgIYObwo=
key fingerprint sha256: 68a39ada01f3881fb80e53b86bc407ed769f4fcd1cceceb0a5790e0f80fdf81b
Decrypt it & read the pick
Decryption key (released after the match)
81c03ba91714062295aa113e06093b7e15cda31b6b1e15048a88d812de5079e0
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("wMw8vRFMK7qDGjL+xw89uzoXulGP/I9NEEBqsP8qX/mA3geii829v5xwh3IsKluNx1l2BTL0MHdzPolgNq0sTlI8c6cjCiuyZY+DKuZZC7zVxN6tM9JqYdFSMRnxpyGisEv7VIc/M9poBX7SifqP39AK2vcqXFkHpX4PFkvECqy6o1oRFkyHFaAvmfeHGW/9Hc7SudinUlhKUwGyKNqhBnKSeoyzh6zS+qRJym7PrUCaE4+nYTsHiCkvae+CACZoTJv6DhE9DRGpKQifBm1ksYP5Bjn3FHV0aIHP5b7V/+JqDowuVoRU3BqsG7XTbYNX8HMdBfd7Ozre7Yk5T8WWs7uUtzrEVzDHSNWztlkzgIYObwo="), c => c.charCodeAt(0));
const key  = Uint8Array.from("81c03ba91714062295aa113e06093b7e15cda31b6b1e15048a88d812de5079e0".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): 81c03ba91714062295aa113e06093b7e15cda31b6b1e15048a88d812de5079e0
  • IV / nonce (hex): c0cc3cbd114c2bba831a32fe
  • Ciphertext (hex): c70f3dbb3a17ba518ffc8f4d10406ab0ff2a5ff980de07a28bcdbdbf9c7087722c2a5b8dc759760532f43077733e896036ad2c4e523c73a7230a2bb2658f832ae6590bbcd5c4dead33d26a61d1523119f1a721a2b04bfb54873f33da68057ed289fa8fdfd00adaf72a5c5907a57e0f164bc40aacbaa35a11164c8715a02f99f787196ffd1dced2b9d8a752584a5301b228daa10672927a8cb387acd2faa449ca6ecfad409a138fa7613b0788292f69ef820026684c9bfa0e113d0d11a929089f066d64b183f90639f71475746881cfe5bed5ffe26a0e8c2e568454dc1aac1bb5d36d8357f0731d05f77b3b3adeed89394fc596b3bb94b7
  • Auth tag (hex): 3ac45730c748d5b3b6593380860e6f0a

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