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

FC Augsburg vs Saarbrücken

Club Friendlies 3 · World · 25 Jul 2026, 12:00 UTC

Final score
1 : 1
Result
Lost
Pick
Saarbrücken
Market
1x2
Model prob.
21.7%
Best price
7.31
Min odds
5.65
Stake factor
3.00

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)
ZQ8CuUFSx1anjS6q/IN7cV/goe4ZdnAxTSh9lxcGs5CuHpMCUg0pfYIemqYsGiyEkkv0ETGZPzku1r7CoKnkI8c7bhJjuoMgn5pCQ1lSSFontXUFytUnAuPLr8qC0kRrQZ/gDjLiABJ/KAf6QYxv3awt7V3+cRB2YeTJJHYNdpTcDcl5ytEDa0k0R4QFC7zmOrS7zR4u3ftlWKc2mhfTU3iZMV1afsQsP+37C7LF13nHeb0sXor/ziyOtkwHVv6HbSf0knbwP8dshk0XVCG/JJOGMZPC/qx9ww34+oHSinJ/hdRrlT5/F2yl995wmh/YJHFHQU/WK9Y44iS2dAP/SWprGN2reUjTmtI=
key fingerprint sha256: 7080701a358fdcb2c99105af2f21aa8c537fff2797639b7c301d195d73744bbd
Decrypt it & read the pick
Decryption key (released after the match)
a9079331b601643d3d91c0f36c0d763034564a141d76e3eb143246f6fb0ca1be
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("ZQ8CuUFSx1anjS6q/IN7cV/goe4ZdnAxTSh9lxcGs5CuHpMCUg0pfYIemqYsGiyEkkv0ETGZPzku1r7CoKnkI8c7bhJjuoMgn5pCQ1lSSFontXUFytUnAuPLr8qC0kRrQZ/gDjLiABJ/KAf6QYxv3awt7V3+cRB2YeTJJHYNdpTcDcl5ytEDa0k0R4QFC7zmOrS7zR4u3ftlWKc2mhfTU3iZMV1afsQsP+37C7LF13nHeb0sXor/ziyOtkwHVv6HbSf0knbwP8dshk0XVCG/JJOGMZPC/qx9ww34+oHSinJ/hdRrlT5/F2yl995wmh/YJHFHQU/WK9Y44iS2dAP/SWprGN2reUjTmtI="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a9079331b601643d3d91c0f36c0d763034564a141d76e3eb143246f6fb0ca1be".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): a9079331b601643d3d91c0f36c0d763034564a141d76e3eb143246f6fb0ca1be
  • IV / nonce (hex): 650f02b94152c756a78d2eaa
  • Ciphertext (hex): fc837b715fe0a1ee197670314d287d971706b390ae1e9302520d297d821e9aa62c1a2c84924bf41131993f392ed6bec2a0a9e423c73b6e1263ba83209f9a42435952485a27b57505cad52702e3cbafca82d2446b419fe00e32e200127f2807fa418c6fddac2ded5dfe71107661e4c924760d7694dc0dc979cad1036b49344784050bbce63ab4bbcd1e2eddfb6558a7369a17d3537899315d5a7ec42c3fedfb0bb2c5d779c779bd2c5e8affce2c8eb64c0756fe876d27f49276f03fc76c864d175421bf2493863193c2feac7dc30df8fa81d28a727f85d46b953e7f176ca5f7de709a1fd8247147414fd62bd638e2
  • Auth tag (hex): 24b67403ff496a6b18ddab7948d39ad2

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