Maccabi Tel Aviv vs FC Lugano
Conference League Qualifiers · UEFA · 27 Aug 2026, 16: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.
f9IZn/xddoOfIOljuUtJiCVYgEdpMkRwskOcWYb0rGLGSQTtWoYJm9t/Af+QdDAvHABZSjfYWisk5ismn0gmJnMVHBs/7mi1FrzimimAJJQix/tXgBnOtwTY0IgDZ8Sjz9zsGW4FL8ygaMK3/u3eFAqg6VoKb2EyHJlWzP+RVeeSQkE9AxSAteu44TR9beanbTrNzmZlKdxgeSwT0hwIlb3WHGDxy2exbw0Wo/4LY2wGrEul21Vki1Bu+gaBuVj+RMM7MnmNnlmGVbYnQDrtCFKJBUwndv1GPGF0pWaiiavL5eubcmXHFowkOGrCwbMU0wwK6aHge1K60X4JL17QAgOzBJ1xbHTBERec4BqyL7fJ/jej
4b43626fafb710b086a6a273ada2ba937a4dcabae4cc16f46dd0fa0857b6eac5Decrypt 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("f9IZn/xddoOfIOljuUtJiCVYgEdpMkRwskOcWYb0rGLGSQTtWoYJm9t/Af+QdDAvHABZSjfYWisk5ismn0gmJnMVHBs/7mi1FrzimimAJJQix/tXgBnOtwTY0IgDZ8Sjz9zsGW4FL8ygaMK3/u3eFAqg6VoKb2EyHJlWzP+RVeeSQkE9AxSAteu44TR9beanbTrNzmZlKdxgeSwT0hwIlb3WHGDxy2exbw0Wo/4LY2wGrEul21Vki1Bu+gaBuVj+RMM7MnmNnlmGVbYnQDrtCFKJBUwndv1GPGF0pWaiiavL5eubcmXHFowkOGrCwbMU0wwK6aHge1K60X4JL17QAgOzBJ1xbHTBERec4BqyL7fJ/jej"), c => c.charCodeAt(0));
const key = Uint8Array.from("4b43626fafb710b086a6a273ada2ba937a4dcabae4cc16f46dd0fa0857b6eac5".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):
4b43626fafb710b086a6a273ada2ba937a4dcabae4cc16f46dd0fa0857b6eac5 - IV / nonce (hex):
7fd2199ffc5d76839f20e963 - Ciphertext (hex):
b94b49882558804769324470b2439c5986f4ac62c64904ed5a86099bdb7f01ff9074302f1c00594a37d85a2b24e62b269f48262673151c1b3fee68b516bce29a2980249422c7fb578019ceb704d8d0880367c4a3cfdcec196e052fcca068c2b7feedde140aa0e95a0a6f61321c9956ccff9155e79242413d031480b5ebb8e1347d6de6a76d3acdce666529dc60792c13d21c0895bdd61c60f1cb67b16f0d16a3fe0b636c06ac4ba5db55648b506efa0681b958fe44c33b32798d9e598655b627403aed085289054c2776fd463c6174a566a289abcbe5eb9b7265c7168c24386ac2c1b314d30c0ae9a1e07b52bad17e092f5ed00203b3049d - Auth tag (hex):
716c74c111179ce01ab22fb7c9fe37a3
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 #963756 · 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.