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

Spain U19 W vs Sweden U19 W

Euro U19 Women · Europe · 07 Jul 2026, 14:00 UTC

Final score
3 : 0
Result
Won
Pick
Spain U19 W
Market
1x2
Model prob.
86.8%
Best price
1.26
Min odds
1.21
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)
RFFzg+kVXP+bEJ0JTXCn1glRfvC/yR7yMUMmZJbrPk2/Opf9znefCoaLZglwHUxsJlJolzwTcHDDNxTrW4rJ0GeI+14zqzHgqymGVkmqcNTVj8oF64cWvVtbKamh0ELNHftas2SB3NyYQHHP591db8Dug0zXHs9SE8lm5J3PK3LMm2N+BU9LHETHa7uGDdobem40Wg9bpl2Wg5ybkPhQhqHZJSErUZXxBtRi0NLP+0rkRSSN65y8x3iHkdUc+3Nkqot97YOGmRGfztnlM/I5LKKTc1U5tHdok8RNx1nyvSRK2uIKUiOApZxU9hMK/zrDOA0pJwa08v60+vdx/TQIqrs/zBMxgNsqdegw
key fingerprint sha256: fdcd18a847d2381ac4cec4788d75219ffe3554b24fce21157033d4caab9e1126
Decrypt it & read the pick
Decryption key (released after the match)
5a0f1f8a60708c73b33eee4f80694453ab6870294a5dbd06b6863c9d00225945
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("RFFzg+kVXP+bEJ0JTXCn1glRfvC/yR7yMUMmZJbrPk2/Opf9znefCoaLZglwHUxsJlJolzwTcHDDNxTrW4rJ0GeI+14zqzHgqymGVkmqcNTVj8oF64cWvVtbKamh0ELNHftas2SB3NyYQHHP591db8Dug0zXHs9SE8lm5J3PK3LMm2N+BU9LHETHa7uGDdobem40Wg9bpl2Wg5ybkPhQhqHZJSErUZXxBtRi0NLP+0rkRSSN65y8x3iHkdUc+3Nkqot97YOGmRGfztnlM/I5LKKTc1U5tHdok8RNx1nyvSRK2uIKUiOApZxU9hMK/zrDOA0pJwa08v60+vdx/TQIqrs/zBMxgNsqdegw"), c => c.charCodeAt(0));
const key  = Uint8Array.from("5a0f1f8a60708c73b33eee4f80694453ab6870294a5dbd06b6863c9d00225945".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): 5a0f1f8a60708c73b33eee4f80694453ab6870294a5dbd06b6863c9d00225945
  • IV / nonce (hex): 44517383e9155cff9b109d09
  • Ciphertext (hex): 4d70a7d609517ef0bfc91ef23143266496eb3e4dbf3a97fdce779f0a868b6609701d4c6c265268973c137070c33714eb5b8ac9d06788fb5e33ab31e0ab29865649aa70d4d58fca05eb8716bd5b5b29a9a1d042cd1dfb5ab36481dcdc984071cfe7dd5d6fc0ee834cd71ecf5213c966e49dcf2b72cc9b637e054f4b1c44c76bbb860dda1b7a6e345a0f5ba65d96839c9b90f85086a1d925212b5195f106d462d0d2cffb4ae445248deb9cbcc7788791d51cfb7364aa8b7ded838699119fced9e533f2392ca293735539b4776893c44dc759f2bd244adae20a522380a59c54f6130aff3ac3380d292706b4f2feb4faf7
  • Auth tag (hex): 71fd3408aabb3fcc133180db2a75e830

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