(((((toNumber(substring(replaceAll(id(), "[a-z]", ""), 0, 16)) * 100011979) + 500067713) % 900066731) * (((timestamp(prop("Player").first().prop("Timestamp")) * 800067089) + 800068411) % 800053967)) + 900067309) % 900066571
graph TD
    subgraph "Part 1: Process Page ID"
        A[Get Page ID] --> B[Remove all letters];
        B --> C[Shorten to 16 digits];
        C --> D[Convert to a number];
        D --> E[Mix with prime numbers];
        E --> F{Result from ID};
    end

    subgraph "Part 2: Process Timestamp"
        G[Get Timestamp] --> H[Convert time to a number];
        H --> I[Mix with prime numbers];
        I --> J{Result from Time};
    end

    subgraph "Part 3: Combine for Final Number"
        F --> K;
        J --> K[Multiply both results];
        K --> L[Final mix and remainder];
        L --> M([Final Pseudo-Random Number]);
    end

Untitled