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

Forge vs Saint-Laurent

Championship · Canada · 12 Jul 2026, 20:00 UTC

Final score
2 : 1
Result
Won
Pick
Forge
Market
1x2
Model prob.
84.8%
Best price
1.35
Min odds
1.24
Stake factor
2.20

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)
tsEDEdOdGPJCuafLwpPMHAFyEl01TdBqWduEOihVi9VGcFCo8pTurszhMQE6RZHXkMKT1JMoU7JGQOa4D1KERbr2IolhTskaJ63b4s95Damx/nwsZq9O7+iVHZHx3cqrqmWbyNWbB7X7evxcxnWrBEk9yws8q8iNrqhVanGvy4usVW8pSjdXKcO0kwdpjdcGiFeLCqD95OootfPtcHZcW4pkROurVa9Fyexj2MVi0Pr+QoVmgipWPXS66pIKmfu9pdaMQn1r8GmtCCY55zwTZdxnGPf6O/wPjpJMev1VS0bjPTm+7b8a+/+0DyoNBi3VC/1w2TxEGiy2lrUiropoBx2RXlRTRg==
key fingerprint sha256: 8903a084e19ce369e6104d980ec297d779477ae369f29964d7a736b441a28894
Decrypt it & read the pick
Decryption key (released after the match)
ed091c3fed7f56380628b23af59e0ce2076b1ac8369090e054784877b1a5086a
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("tsEDEdOdGPJCuafLwpPMHAFyEl01TdBqWduEOihVi9VGcFCo8pTurszhMQE6RZHXkMKT1JMoU7JGQOa4D1KERbr2IolhTskaJ63b4s95Damx/nwsZq9O7+iVHZHx3cqrqmWbyNWbB7X7evxcxnWrBEk9yws8q8iNrqhVanGvy4usVW8pSjdXKcO0kwdpjdcGiFeLCqD95OootfPtcHZcW4pkROurVa9Fyexj2MVi0Pr+QoVmgipWPXS66pIKmfu9pdaMQn1r8GmtCCY55zwTZdxnGPf6O/wPjpJMev1VS0bjPTm+7b8a+/+0DyoNBi3VC/1w2TxEGiy2lrUiropoBx2RXlRTRg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ed091c3fed7f56380628b23af59e0ce2076b1ac8369090e054784877b1a5086a".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): ed091c3fed7f56380628b23af59e0ce2076b1ac8369090e054784877b1a5086a
  • IV / nonce (hex): b6c10311d39d18f242b9a7cb
  • Ciphertext (hex): c293cc1c0172125d354dd06a59db843a28558bd5467050a8f294eeaecce131013a4591d790c293d4932853b24640e6b80f528445baf62289614ec91a27addbe2cf790da9b1fe7c2c66af4eefe8951d91f1ddcaabaa659bc8d59b07b5fb7afc5cc675ab04493dcb0b3cabc88daea8556a71afcb8bac556f294a375729c3b49307698dd70688578b0aa0fde4ea28b5f3ed70765c5b8a6444ebab55af45c9ec63d8c562d0fafe428566822a563d74baea920a99fbbda5d68c427d6bf069ad082639e73c1365dc6718f7fa3bfc0f8e924c7afd554b46e33d39beedbf1afbffb40f2a0d062dd50bfd70d93c44
  • Auth tag (hex): 1a2cb696b522ae8a68071d915e545346

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