Automatic & Live Draws Free postal entry — equal chance Provably fair · 18+ · Great Britain only
Open Verification

Draw Verification

Armageddon Reinforcement Bundle

Provably fair — cryptographic Draw complete

Draw complete — independently verifiable

This draw used a cryptographic commitment scheme. The draw secret was generated before ticket sales began, its sha256 hash (the commitment hash) was published, and the secret was only revealed after the draw. This proves the winner selection could not have been influenced by ticket sales.

Draw Result

Winner
Duffy, Staffordshire
Winning ticket
#679
Entries in pool
83 (all entrants)
Winner index
81 (0-based)
Draw executed
11 Aug 2026, 8:35 PM
Entropy source
secrets.SystemRandom (instant-win positions at setup)
Fairness mechanism
SHA-256 commit-reveal — selection by sha256(draw_secret:pool_hash:counter) with rejection sampling

How This Result Was Produced

4 steps, each one checkable against the values published below. Nothing here depends on trusting us — every input is shown.

Verify commitment was published before the draw

This sha256 hash was published when the competition was created. It proves the draw_secret could not have been changed after tickets were sold.

febc645bbbd723cedca4f568cdae40d5858b71da5fe8d1cb085ee148d624b5c3

Verify draw_secret matches commitment_hash

The draw_secret is revealed below. sha256(draw_secret) is shown — it must equal the commitment_hash in step 1.

draw_secret (input)

e18cea466677d9828990229d97b1f30db2e76d18380e331889e5b2c19b2468f0

sha256(draw_secret) must equal step 1

febc645bbbd723cedca4f568cdae40d5858b71da5fe8d1cb085ee148d624b5c3

Verify the entry pool hash

sha256 of every ticket number in the draw pool, in ascending numeric order, joined with commas and no spaces. Instant-win tickets in this competition were settled at purchase and are not part of the main draw pool.

08b2803415fe60500c9e05ef877678e3e15058076752fa90e0a6618eb599e3e3

Reproduce the winner selection (rejection sampling)

Starting at counter=0, compute sha256(draw_secret:pool_hash:counter) as a 256-bit integer. Let limit be the largest multiple of N below 2^256. If the value is >= limit, increment counter and retry. Otherwise winner_index = value mod N.

counter=0, winner_index=81

Check It Yourself

Run every check in your own browser. It recomputes the hashes and the winner selection locally from the values published on this page — nothing is sent to our servers, so a pass cannot depend on trusting us.

  1. Confirm sha256(draw_secret) equals the commitment hash in step 1.
  2. Confirm the sha256 of the entry pool below equals the pool hash in step 3. Hash the text exactly as shown — ticket numbers in ascending numeric order, separated by commas, with no spaces and no trailing newline.

    Entry pool — ticket numbers in ascending numeric order

    5,11,13,14,16,23,33,38,51,52,54,59,72,89,97,108,109,110,118,121,132,139,144,147,149,160,165,197,199,202,205,210,228,234,237,239,250,254,255,259,263,273,275,280,282,317,364,368,384,386,398,422,424,425,430,433,437,445,451,457,465,475,479,498,508,518,534,539,556,561,568,573,574,576,592,606,632,633,642,656,671,679,698
  3. Run the pre-filled command below to reproduce the rejection-sampling winner index (counter=?, expected winner_index=81).
    python3 - <<'PY'
    import hashlib
    draw_secret = 'e18cea466677d9828990229d97b1f30db2e76d18380e331889e5b2c19b2468f0'
    pool_hash = '08b2803415fe60500c9e05ef877678e3e15058076752fa90e0a6618eb599e3e3'
    total_entries = 83
    counter = 0
    limit = (1 << 256) - ((1 << 256) % total_entries)
    while True:
        seed = hashlib.sha256(f'{draw_secret}:{pool_hash}:{counter}'.encode()).digest()
        candidate = int.from_bytes(seed[:32], 'big')
        if candidate < limit:
            print(f'counter={counter} winner_index={candidate % total_entries}')
            break
        counter += 1
    PY

Full Entry List

All sold tickets with entry method and optional-question answer status (no personal names). Download it to cross-reference ticket numbers against the draw pool; the "In Main Draw" column marks which rows formed it. Instant-win tickets in this competition appear here too — they were settled at purchase and are not part of the main draw pool.

Download entry list CSV

Independent Timestamp Proof

Each commitment hash is anchored to the Bitcoin blockchain via OpenTimestamps. A confirmed proof establishes the hash existed before the Bitcoin block that attests it — checkable without trusting our records. Save the commitment hash to a file and check the proof with the free ots tool: printf '%s' 'COMMITMENT_HASH' > commitment.txt && ots verify -f commitment.txt proof.ots

Draw commitment — anchored in Bitcoin 5 Aug 2026 02:05 UTC

febc645bbbd723cedca4f568cdae40d5858b71da5fe8d1cb085ee148d624b5c3 Download OTS proof

Instant win commitment — anchored in Bitcoin 5 Aug 2026 02:05 UTC

8e817602e3b9650acf02cec09cea4a60cdfeac6e1ed98e41ccb9a856ded557fe Download OTS proof