Portland Hearts of Pine vs Westchester SC
USL League One · USA · 06 Sept 2026, 22:00 UTC
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.
aR9kJUyXV4qTu89vztl7ruu1+dXXm6Ax5XOcYtxuf/dlsttL1p6S7X6nFmGw41qEh42CT2jS1+wyXvPT176T2kjus5zlUdmHiZ5F+BkTfBQVGU58IeWTpOWJfwhZUpt53n3pDZ7xs5EZ4AICcMTKl9d0GtwbfmXY9imm5h756uiJj3rpjIG3KNcyTM4aPUckdJTIHma7dTDsVqOTgu9FBLpVvbyXTPRqbai20QVXgPUMrjrPPSDquXkRuNygqcHm+E6f3yrNYeMbwCWsLurYnXTeJnJOAA/o1JVO0/YhfV2ApdE/MQAsRaS4qoxxsXTa6b3EXFoqEd6BsNFxVijcMfsy
f1ced6f9d50155ece788097f8a37d5646d676e069d57e2fee7192f96279b33dcDecrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("aR9kJUyXV4qTu89vztl7ruu1+dXXm6Ax5XOcYtxuf/dlsttL1p6S7X6nFmGw41qEh42CT2jS1+wyXvPT176T2kjus5zlUdmHiZ5F+BkTfBQVGU58IeWTpOWJfwhZUpt53n3pDZ7xs5EZ4AICcMTKl9d0GtwbfmXY9imm5h756uiJj3rpjIG3KNcyTM4aPUckdJTIHma7dTDsVqOTgu9FBLpVvbyXTPRqbai20QVXgPUMrjrPPSDquXkRuNygqcHm+E6f3yrNYeMbwCWsLurYnXTeJnJOAA/o1JVO0/YhfV2ApdE/MQAsRaS4qoxxsXTa6b3EXFoqEd6BsNFxVijcMfsy"), c => c.charCodeAt(0));
const key = Uint8Array.from("f1ced6f9d50155ece788097f8a37d5646d676e069d57e2fee7192f96279b33dc".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):
f1ced6f9d50155ece788097f8a37d5646d676e069d57e2fee7192f96279b33dc - IV / nonce (hex):
691f64254c97578a93bbcf6f - Ciphertext (hex):
ced97baeebb5f9d5d79ba031e5739c62dc6e7ff765b2db4bd69e92ed7ea71661b0e35a84878d824f68d2d7ec325ef3d3d7be93da48eeb39ce551d987899e45f819137c1415194e7c21e593a4e5897f0859529b79de7de90d9ef1b39119e0020270c4ca97d7741adc1b7e65d8f629a6e61ef9eae8898f7ae98c81b728d7324cce1a3d47247494c81e66bb7530ec56a39382ef4504ba55bdbc974cf46a6da8b6d1055780f50cae3acf3d20eab97911b8dca0a9c1e6f84e9fdf2acd61e31bc025ac2eead89d74de26724e000fe8d4954ed3f6217d5d80a5d13f31002c45a4b8aa8c71b174dae9bd - Auth tag (hex):
c45c5a2a11de81b0d1715628dc31fb32
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #965836 · 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.