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

Side FC 92 W vs Wichita W

WPSL · United States · 24 Jun 2026, 00:00 UTC

Final score
3 : 2
Result
Won
Pick
Side FC 92 W
Market
1x2
Model prob.
44.8%
Best price
2.68
Min odds
2.45
Stake factor
2.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)
RPhtfw/5Hf8fAcB8RaJtUzFCo8y/s2+u9xy0riTtvKXlUdzNR2AeB/YcnbBV0ML8q1l9OeumWljIJ9j0ARQbfUOUD8wTxT+0RNT3I6Dkl0BJqwmCYezlZi/f3ieKb9+NwA+uSuvx80xuXfTNCkZ0l3VaYi1W8QZJiVDpBn3XjqAmElA3l2h4vDsjoJd7eY3weENv6UhYQY4P5nVCL8qfqvoTSCMH+kU1HdusR7cyv8NmkPYocZivgUfP0D5Bp8fLBs2A8s2teypWSpw2s2K5BOBYeYWYvjmitW57PW7n5rNCJ4Tp9FNGLHk2p0T4P7BAj3LA7TT1PhNfL2R7Uu3lsd6NeKwk0pJehtUc
key fingerprint sha256: 6676355aa9c798c009ca6bfa7c0168119c701b5cf75b471b54d49e188290c045
Decrypt it & read the pick
Decryption key (released after the match)
daaf540f8d955743e431429426830cb1921c5a2acb3819299fedc5347cb043e9
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("RPhtfw/5Hf8fAcB8RaJtUzFCo8y/s2+u9xy0riTtvKXlUdzNR2AeB/YcnbBV0ML8q1l9OeumWljIJ9j0ARQbfUOUD8wTxT+0RNT3I6Dkl0BJqwmCYezlZi/f3ieKb9+NwA+uSuvx80xuXfTNCkZ0l3VaYi1W8QZJiVDpBn3XjqAmElA3l2h4vDsjoJd7eY3weENv6UhYQY4P5nVCL8qfqvoTSCMH+kU1HdusR7cyv8NmkPYocZivgUfP0D5Bp8fLBs2A8s2teypWSpw2s2K5BOBYeYWYvjmitW57PW7n5rNCJ4Tp9FNGLHk2p0T4P7BAj3LA7TT1PhNfL2R7Uu3lsd6NeKwk0pJehtUc"), c => c.charCodeAt(0));
const key  = Uint8Array.from("daaf540f8d955743e431429426830cb1921c5a2acb3819299fedc5347cb043e9".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): daaf540f8d955743e431429426830cb1921c5a2acb3819299fedc5347cb043e9
  • IV / nonce (hex): 44f86d7f0ff91dff1f01c07c
  • Ciphertext (hex): 45a26d533142a3ccbfb36faef71cb4ae24edbca5e551dccd47601e07f61c9db055d0c2fcab597d39eba65a58c827d8f401141b7d43940fcc13c53fb444d4f723a0e4974049ab098261ece5662fdfde278a6fdf8dc00fae4aebf1f34c6e5df4cd0a467497755a622d56f106498950e9067dd78ea026125037976878bc3b23a0977b798df078436fe94858418e0fe675422fca9faafa13482307fa45351ddbac47b732bfc36690f6287198af8147cfd03e41a7c7cb06cd80f2cdad7b2a564a9c36b362b904e058798598be39a2b56e7b3d6ee7e6b3422784e9f453462c7936a744f83fb0408f72c0ed34f53e135f2f64
  • Auth tag (hex): 7b52ede5b1de8d78ac24d2925e86d51c

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