TransINVEST Vilnius II vs Neptūną Klaipėda
1. Lyga · Lithuania · 20 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.
E43pLDjb7Cf2LlkcaLSWL3TY5Y7/ffsjqbBpytRJ7TN7w4ZLWwA2nB7kQhlWyDAgZrtZ4yb83BlJgwaF88EbdWrmfnqMOwvq13AE7UIajUEfZKYUDIxxkO/5xh3NAF6kAN2xJE/ruMdN9XFNjchuTZmoTnYR+2Kz/mAjZzOItE2Mbs0lG9N/92LdCG0gAUl/zf8XWyjvn9MCUMBiDMlvmzkaAl6Ga30+Qmvr9F4yfEdoZv/rtxcYTKj2e4rGFuz2iX1algnQTbWuhkFPeC/VUVfWbVoDqct199bFeY7Xm8vkJAnqrJg6pl6mi717ZWI+bVolAmdo+u2sLdu52tqmRaUpFZX7iTb1if3tdlF+NgeDFsU=
7c4736f0e28966c0096787eea53d351e7e01b863d3c1041b7e2e254edbf0c379Decrypt 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("E43pLDjb7Cf2LlkcaLSWL3TY5Y7/ffsjqbBpytRJ7TN7w4ZLWwA2nB7kQhlWyDAgZrtZ4yb83BlJgwaF88EbdWrmfnqMOwvq13AE7UIajUEfZKYUDIxxkO/5xh3NAF6kAN2xJE/ruMdN9XFNjchuTZmoTnYR+2Kz/mAjZzOItE2Mbs0lG9N/92LdCG0gAUl/zf8XWyjvn9MCUMBiDMlvmzkaAl6Ga30+Qmvr9F4yfEdoZv/rtxcYTKj2e4rGFuz2iX1algnQTbWuhkFPeC/VUVfWbVoDqct199bFeY7Xm8vkJAnqrJg6pl6mi717ZWI+bVolAmdo+u2sLdu52tqmRaUpFZX7iTb1if3tdlF+NgeDFsU="), c => c.charCodeAt(0));
const key = Uint8Array.from("7c4736f0e28966c0096787eea53d351e7e01b863d3c1041b7e2e254edbf0c379".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):
7c4736f0e28966c0096787eea53d351e7e01b863d3c1041b7e2e254edbf0c379 - IV / nonce (hex):
138de92c38dbec27f62e591c - Ciphertext (hex):
68b4962f74d8e58eff7dfb23a9b069cad449ed337bc3864b5b00369c1ee4421956c8302066bb59e326fcdc1949830685f3c11b756ae67e7a8c3b0bead77004ed421a8d411f64a6140c8c7190eff9c61dcd005ea400ddb1244febb8c74df5714d8dc86e4d99a84e7611fb62b3fe6023673388b44d8c6ecd251bd37ff762dd086d2001497fcdff175b28ef9fd30250c0620cc96f9b391a025e866b7d3e426bebf45e327c476866ffebb717184ca8f67b8ac616ecf6897d5a9609d04db5ae86414f782fd55157d66d5a03a9cb75f7d6c5798ed79bcbe42409eaac983aa65ea68bbd7b65623e6d5a25026768faedac2ddbb9dadaa645a52915 - Auth tag (hex):
95fb8936f589fded76517e36078316c5
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 #958853 · 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.