Žalgiris II vs Hegelmann II
1. Lyga · Lithuania · 02 Jul 2026, 15: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.
uU549hOTg/T2cHyx3cSNU9hqAm6JH6zS30DRT9kKNMTiozWmTzYzP4QzyV7azu9b9hNN+cQDOtqfujrI68iIglkDYEyNORMW5eaREhAc3Ubj7cOT0Gzbh0LKMl5Hmfx6aHfujwS2u6jg1oDc1c+0JjZ9lHuYM+c2fBpSL38fJCUF/WorFarLOh9uX93RRG1jf3RfEY7miqBsHjK4A/GkKKvarj22sfdj7WXJ9FLr5CzEnHunDoEOUo+x8QZvDyhigkL7PJoOdKnHfozlwnnrBG3zlnT5+54WsybWGjX8Gxq2y4XvYbvPxmfcwpPCJ0lIk7zEqj17pz9G6X204Crx9Dq1hMjX/yFu6tnW4FA=
dc654636516c5f879037354afe3be593b83a2f917c815d260b0b3546fe5c6a8dDecrypt 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("uU549hOTg/T2cHyx3cSNU9hqAm6JH6zS30DRT9kKNMTiozWmTzYzP4QzyV7azu9b9hNN+cQDOtqfujrI68iIglkDYEyNORMW5eaREhAc3Ubj7cOT0Gzbh0LKMl5Hmfx6aHfujwS2u6jg1oDc1c+0JjZ9lHuYM+c2fBpSL38fJCUF/WorFarLOh9uX93RRG1jf3RfEY7miqBsHjK4A/GkKKvarj22sfdj7WXJ9FLr5CzEnHunDoEOUo+x8QZvDyhigkL7PJoOdKnHfozlwnnrBG3zlnT5+54WsybWGjX8Gxq2y4XvYbvPxmfcwpPCJ0lIk7zEqj17pz9G6X204Crx9Dq1hMjX/yFu6tnW4FA="), c => c.charCodeAt(0));
const key = Uint8Array.from("dc654636516c5f879037354afe3be593b83a2f917c815d260b0b3546fe5c6a8d".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):
dc654636516c5f879037354afe3be593b83a2f917c815d260b0b3546fe5c6a8d - IV / nonce (hex):
b94e78f6139383f4f6707cb1 - Ciphertext (hex):
ddc48d53d86a026e891facd2df40d14fd90a34c4e2a335a64f36333f8433c95edaceef5bf6134df9c4033ada9fba3ac8ebc888825903604c8d391316e5e69112101cdd46e3edc393d06cdb8742ca325e4799fc7a6877ee8f04b6bba8e0d680dcd5cfb426367d947b9833e7367c1a522f7f1f242505fd6a2b15aacb3a1f6e5fddd1446d637f745f118ee68aa06c1e32b803f1a428abdaae3db6b1f763ed65c9f452ebe42cc49c7ba70e810e528fb1f1066f0f28628242fb3c9a0e74a9c77e8ce5c279eb046df39674f9fb9e16b326d61a35fc1b1ab6cb85ef61bbcfc667dcc293c227494893bcc4aa3d7ba73f46e97db4e0 - Auth tag (hex):
2af1f43ab584c8d7ff216eead9d6e050
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 #956349 · 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.