{"address":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","latest":5077326,"price":{"usd":0.6114263711880005,"btc":0,"change24h":0,"marketCap":181431307.7126813,"volume24h":0,"source":"onchain","venue":"On-chain pool WDAN/USDT on dannyswap"},"balance":"0","nonce":1,"codeSize":11042,"isContract":true,"contract":{"verified":true,"name":"GameConfig","compiler":"v0.8.28+commit.7893614a","optimization":true,"runs":200,"license":"mit","proxy":false,"implementation":null,"sourceCode":"{\"sources\":{\"src/GameConfig.sol\":\"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.24;\\n\\n/* ============================================================\\n   GameConfig - the whole rulebook, on-chain\\n   ------------------------------------------------------------\\n   This contract is the single source of truth for three things:\\n     1. the drop rate of each jade tier (rateBps)\\n     2. the reward for each tier (payout)\\n     3. ticket and pack prices\\n\\n   The backend reads its values from here; no rate table may ever\\n   live in application code again. If the hash read here does not\\n   match the one the backend is running, the backend must refuse\\n   to draw.\\n\\n   ------------------------------------------------------------\\n   Why changes have to wait (activationDelay)\\n\\n   Draws use commit-reveal: publish SHA256(serverSeed) first,\\n   reveal the seed afterwards. But the outcome does not come from\\n   the seed alone - it comes from the seed PLUS the rate table.\\n   If the owner could change rates instantly, they could change\\n   the outcome of a seed whose hash was already published, and the\\n   player's hash check would still pass.\\n\\n   The delay means everyone sees a change coming before it takes\\n   effect, and the backend binds configHash to each round when the\\n   round opens.\\n   ============================================================ */\\n\\nimport {Ownable2Step, Ownable} from \\\"@openzeppelin/contracts/access/Ownable2Step.sol\\\";\\nimport {Pausable} from \\\"@openzeppelin/contracts/utils/Pausable.sol\\\";\\n\\ncontract GameConfig is Ownable2Step, Pausable {\\n    /* ---------------- data shapes ---------------- */\\n\\n    /// One jade tier\\n    struct Tier {\\n        /// Identifier matching the app side, e.g. bytes32(\\\"common\\\")\\n        bytes32 id;\\n        /// Drop rate in basis points - 4000 = 40.00%\\n        uint32 rateBps;\\n        /**\\n         * Reward as a whole number of YOK (same unit as the in-game ledger).\\n         * If this tier pays a range, this value is the lower bound and the\\n         * upper bound lives in payoutMax().\\n         *\\n         * WARNING: never add a field to this struct.\\n         *    The already-deployed ClaimVault calls currentConfig() and\\n         *    decodes it using the struct shape it was compiled against.\\n         *    The moment a field is added, that vault fails to decode and\\n         *    reverts on every price lookup - which takes the entire shop\\n         *    down instantly.\\n         *    Put new data in a parallel array outside Config instead.\\n         */\\n        uint128 payout;\\n    }\\n\\n    /**\\n     * A ticket bundle in the shop\\n     *\\n     * The buyer pays `price` and receives `tickets + bonus` tickets, so the\\n     * real per-ticket price is price / (tickets + bonus), below the sticker\\n     * price. A discount and a bonus ticket are the same discount; they only\\n     * differ in how it is told to the player.\\n     */\\n    struct Pack {\\n        bytes32 id;\\n        uint32 tickets;\\n        uint32 bonus;\\n        uint128 price;\\n    }\\n\\n    struct Config {\\n        uint64 version;\\n        /// When this set takes effect (unix seconds)\\n        uint64 activeFrom;\\n        uint128 ticketPrice;\\n        bytes32 hash;\\n        Tier[] tiers;\\n        Pack[] packs;\\n    }\\n\\n    /* ============================================================\\n       Payout ranges - deliberately kept outside Config\\n       ------------------------------------------------------------\\n       Index-aligned with that set's tiers.\\n       0, or anything not above payout, means that tier pays a fixed\\n       amount rather than a range.\\n\\n       Held separately because the already-deployed ClaimVault decodes\\n       Config using the original struct shape; adding a field to Tier\\n       would take the whole shop down.\\n       ============================================================ */\\n    uint128[] private _liveMax;\\n    uint128[] private _queuedMax;\\n\\n    /* ---------------- constants ---------------- */\\n\\n    uint32 public constant BPS = 10_000;\\n    uint8 public constant MIN_TIERS = 2;\\n    uint8 public constant MAX_TIERS = 12;\\n    uint8 public constant MAX_PACKS = 12;\\n\\n    /**\\n     * @notice Floor on the minDelay this contract can be deployed with\\n     * @dev Without it, anyone could deploy with minDelay = 0 and make rate\\n     *      changes take effect instantly, which would leave the delay\\n     *      protecting nothing: the outcome of a seed whose hash was already\\n     *      published could be changed while the player's hash check still\\n     *      passed.\\n     */\\n    uint64 public constant MIN_ALLOWED_DELAY = 1 hours;\\n\\n    /// This contract's minimum delay, fixed at deploy time and never changeable\\n    uint64 public immutable minDelay;\\n\\n    /* ---------------- state ---------------- */\\n\\n    Config private _live;\\n    Config private _queued;\\n    bool public hasQueued;\\n\\n    uint64 public versionCounter;\\n\\n    /**\\n     * @notice Whether the set in _live was announced ahead of time or applied\\n     *         immediately\\n     * @dev Players need to be able to tell whether the rules in force went\\n     *      through the announcement period, otherwise an instant change\\n     *      blends in with an ordinary one.\\n     *      Read it through currentAnnounced(), not directly.\\n     */\\n    bool public liveWasAnnounced;\\n\\n    /* ---------------- events ---------------- */\\n\\n    /// The full history of changes is replayable from these events alone,\\n    /// with no archive node required\\n    event ConfigQueued(\\n        uint64 indexed version,\\n        bytes32 indexed configHash,\\n        uint64 activeFrom,\\n        uint128 ticketPrice,\\n        Tier[] tiers,\\n        Pack[] packs\\n    );\\n    event ConfigPromoted(uint64 indexed version, bytes32 indexed configHash);\\n    /// Rules changed with no advance notice - its own event, so an audit can\\n    /// pick those occasions out clearly\\n    event ConfigAppliedNow(\\n        uint64 indexed version,\\n        bytes32 indexed configHash,\\n        uint128 ticketPrice,\\n        Tier[] tiers,\\n        Pack[] packs\\n    );\\n    event QueuedCancelled(uint64 indexed version, bytes32 indexed configHash);\\n\\n    /* ---------------- errors ---------------- */\\n\\n    error BadTierCount();\\n    error BadPackCount();\\n    error RatesMustSumTo100();\\n    error ZeroTicketPrice();\\n    error DuplicateId(bytes32 id);\\n    error DelayTooShort(uint64 given, uint64 required);\\n    error NothingQueued();\\n    error NotYetActive(uint64 activeFrom);\\n    /// Upper bound of a payout range sits below its lower bound\\n    error BadPayoutRange(bytes32 id, uint128 min, uint128 max);\\n    /// Number of upper bounds supplied does not match the number of tiers\\n    error PayoutMaxLengthMismatch(uint256 tiers, uint256 maxes);\\n\\n    /* ---------------- setup ---------------- */\\n\\n    constructor(\\n        address _owner,\\n        uint64 _minDelay,\\n        uint128 _ticketPrice,\\n        Tier[] memory _tiers,\\n        Pack[] memory _packs,\\n        uint128[] memory _payoutMax\\n    ) Ownable(_owner) {\\n        if (_minDelay < MIN_ALLOWED_DELAY) revert DelayTooShort(_minDelay, MIN_ALLOWED_DELAY);\\n        minDelay = _minDelay;\\n\\n        _validate(_ticketPrice, _tiers, _packs, _payoutMax);\\n\\n        versionCounter = 1;\\n        _live.version = 1;\\n        _live.activeFrom = uint64(block.timestamp);\\n        _live.ticketPrice = _ticketPrice;\\n        for (uint256 i = 0; i < _tiers.length; i++) _live.tiers.push(_tiers[i]);\\n        for (uint256 i = 0; i < _packs.length; i++) _live.packs.push(_packs[i]);\\n        for (uint256 i = 0; i < _payoutMax.length; i++) _liveMax.push(_payoutMax[i]);\\n        _live.hash = _hashOf(1, _ticketPrice, _tiers, _packs, _payoutMax);\\n        liveWasAnnounced = true; // the deploy-time set is not a \\\"change\\\"\\n\\n        emit ConfigQueued(1, _live.hash, _live.activeFrom, _ticketPrice, _tiers, _packs);\\n        emit ConfigPromoted(1, _live.hash);\\n    }\\n\\n    /* ============================================================\\n       Reads - this is the path for the backend and for auditors\\n       ============================================================ */\\n\\n    /**\\n     * @notice The values actually in force this second\\n     * @dev If a queued set has come due, it is returned straight away without\\n     *      anyone having to call promote(). (promote() exists only to move it\\n     *      into permanent storage and save gas on later reads.)\\n     */\\n    function currentConfig() public view returns (Config memory) {\\n        if (hasQueued && block.timestamp >= _queued.activeFrom) return _queued;\\n        return _live;\\n    }\\n\\n    /**\\n     * @notice Were the rules in force right now announced in advance?\\n     * @dev A queued set is always announced, so once it comes due this can\\n     *      answer true immediately without waiting for anyone to call\\n     *      promote().\\n     */\\n    function currentAnnounced() public view returns (bool) {\\n        if (hasQueued && block.timestamp >= _queued.activeFrom) return true;\\n        return liveWasAnnounced;\\n    }\\n\\n    /// Hash of the values in force - the backend must compare this against the\\n    /// config it is itself using before every draw\\n    function currentHash() external view returns (bytes32) {\\n        return currentConfig().hash;\\n    }\\n\\n    /// A set that has been announced but is not yet due - the site uses this\\n    /// to show \\\"rates change in ...\\\"\\n    function queuedConfig() external view returns (bool exists, Config memory cfg) {\\n        if (!hasQueued || block.timestamp >= _queued.activeFrom) return (false, cfg);\\n        return (true, _queued);\\n    }\\n\\n    /**\\n     * @notice Upper bounds of payout ranges, index-aligned with the tiers of\\n     *         the set in force right now\\n     * @dev 0, or anything not above that tier's payout, means a fixed payout\\n     *      rather than a range.\\n     *      Separate from currentConfig() because the already-deployed\\n     *      ClaimVault decodes Config with the original struct shape, so no\\n     *      field can be added to it.\\n     */\\n    function currentPayoutMax() public view returns (uint128[] memory) {\\n        if (hasQueued && block.timestamp >= _queued.activeFrom) return _queuedMax;\\n        return _liveMax;\\n    }\\n\\n    /// Upper bounds of the queued set - the counterpart to queuedConfig()\\n    function queuedPayoutMax() external view returns (uint128[] memory) {\\n        return _queuedMax;\\n    }\\n\\n    /// EV of a single draw, pre-multiplied by 10000 (no decimals on-chain)\\n    function expectedValueBps() external view returns (uint256) {\\n        Config memory c = currentConfig();\\n        return _evBps(c.tiers, currentPayoutMax());\\n    }\\n\\n    /**\\n     * @notice House edge in bps\\n     * @dev Settings where the house loses money are now allowed, so this value\\n     *      can genuinely go negative. The type is unsigned, and subtracting\\n     *      directly would underflow, so it returns 0 when EV exceeds the price.\\n     *      Pair it with houseLoses() to tell break-even apart from a loss.\\n     */\\n    function houseEdgeBps() external view returns (uint256) {\\n        Config memory c = currentConfig();\\n        uint256 ev = _evBps(c.tiers, currentPayoutMax());\\n        uint256 price = uint256(c.ticketPrice) * BPS;\\n        if (ev >= price) return 0;\\n        return ((price - ev) * BPS) / price;\\n    }\\n\\n    /// Does the house lose money on an average draw? The site uses this to warn\\n    /// the owner\\n    function houseLoses() external view returns (bool) {\\n        Config memory c = currentConfig();\\n        return _evBps(c.tiers, currentPayoutMax()) > uint256(c.ticketPrice) * BPS;\\n    }\\n\\n    /* ============================================================\\n       Writes - owner only\\n       ============================================================ */\\n\\n    /**\\n     * @notice Announce a new set of values; nothing changes until activeFrom\\n     * @param delay How many seconds until it takes effect; may not be below\\n     *        minDelay\\n     */\\n    function queueConfig(\\n        uint128 _ticketPrice,\\n        Tier[] calldata _tiers,\\n        Pack[] calldata _packs,\\n        uint128[] calldata _payoutMax,\\n        uint64 delay\\n    ) external onlyOwner {\\n        if (delay < minDelay) revert DelayTooShort(delay, minDelay);\\n        _validate(_ticketPrice, _tiers, _packs, _payoutMax);\\n\\n        // If an older set is queued and already due, store it first, otherwise\\n        // it would be overwritten and lost\\n        if (hasQueued && block.timestamp >= _queued.activeFrom) _promote();\\n\\n        uint64 v = ++versionCounter;\\n        uint64 activeFrom = uint64(block.timestamp) + delay;\\n\\n        delete _queued.tiers;\\n        delete _queued.packs;\\n        delete _queuedMax;\\n        _queued.version = v;\\n        _queued.activeFrom = activeFrom;\\n        _queued.ticketPrice = _ticketPrice;\\n        for (uint256 i = 0; i < _tiers.length; i++) _queued.tiers.push(_tiers[i]);\\n        for (uint256 i = 0; i < _packs.length; i++) _queued.packs.push(_packs[i]);\\n        for (uint256 i = 0; i < _payoutMax.length; i++) _queuedMax.push(_payoutMax[i]);\\n        _queued.hash = _hashOf(v, _ticketPrice, _tiers, _packs, _payoutMax);\\n        hasQueued = true;\\n\\n        emit ConfigQueued(v, _queued.hash, activeFrom, _ticketPrice, _tiers, _packs);\\n    }\\n\\n    /**\\n     * @notice Change the rules with immediate effect, skipping the announcement\\n     *\\n     * WARNING: this gives up the one thing queueConfig buys - that players\\n     *    always see a change coming. Use it to fix something genuinely wrong,\\n     *    such as a mistyped rate that loses money on every draw, or during\\n     *    testing. It is not the normal way to adjust rates.\\n     *\\n     * What still holds:\\n     *   - onlyOwner\\n     *   - the same _validate; an invalid set is still rejected\\n     *   - its own event, so an audit can see which changes skipped notice\\n     *   - liveWasAnnounced goes false, and the site shows that to players\\n     *\\n     * What is not lost: the outcome of a seed whose hash was already published\\n     * still cannot be changed, because the backend binds configHash to the\\n     * round. When the rules change, that round has to close and reveal its\\n     * seed first, so every past draw stays verifiable.\\n     */\\n    function applyNow(\\n        uint128 _ticketPrice,\\n        Tier[] calldata _tiers,\\n        Pack[] calldata _packs,\\n        uint128[] calldata _payoutMax\\n    ) external onlyOwner {\\n        _validate(_ticketPrice, _tiers, _packs, _payoutMax);\\n\\n        // Drop any queued set, since the owner just overrode it with a new one.\\n        // Left in place, the old set would spring back when its time came.\\n        if (hasQueued) {\\n            emit QueuedCancelled(_queued.version, _queued.hash);\\n            hasQueued = false;\\n            delete _queued.tiers;\\n            delete _queued.packs;\\n        }\\n\\n        uint64 v = ++versionCounter;\\n\\n        delete _live.tiers;\\n        delete _live.packs;\\n        delete _liveMax;\\n        _live.version = v;\\n        _live.activeFrom = uint64(block.timestamp);\\n        _live.ticketPrice = _ticketPrice;\\n        for (uint256 i = 0; i < _tiers.length; i++) _live.tiers.push(_tiers[i]);\\n        for (uint256 i = 0; i < _packs.length; i++) _live.packs.push(_packs[i]);\\n        for (uint256 i = 0; i < _payoutMax.length; i++) _liveMax.push(_payoutMax[i]);\\n        _live.hash = _hashOf(v, _ticketPrice, _tiers, _packs, _payoutMax);\\n\\n        liveWasAnnounced = false;\\n\\n        emit ConfigAppliedNow(v, _live.hash, _ticketPrice, _tiers, _packs);\\n        emit ConfigPromoted(v, _live.hash);\\n    }\\n\\n    /// Cancel a set that is not yet due - once due, it can no longer be cancelled\\n    function cancelQueued() external onlyOwner {\\n        if (!hasQueued) revert NothingQueued();\\n        if (block.timestamp >= _queued.activeFrom) revert NotYetActive(_queued.activeFrom);\\n\\n        emit QueuedCancelled(_queued.version, _queued.hash);\\n        hasQueued = false;\\n        delete _queued.tiers;\\n        delete _queued.packs;\\n    }\\n\\n    /// Move a due set into permanent storage. Anyone may call it; it is not\\n    /// required, it only saves gas.\\n    function promote() external {\\n        if (!hasQueued) revert NothingQueued();\\n        if (block.timestamp < _queued.activeFrom) revert NotYetActive(_queued.activeFrom);\\n        _promote();\\n    }\\n\\n    /**\\n     * @notice Emergency stop\\n     * @dev WARNING: this flag enforces nothing inside this contract, because\\n     *      draws do not happen on-chain. Two places actually enforce it, and\\n     *      both have to read this value themselves:\\n     *        1. the backend checks paused() before drawing and before selling\\n     *           tickets (done, in repo.ts)\\n     *        2. ClaimVault checks it before accepting ticket payments\\n     *      Do not mistake this for a switch that stops everything by itself.\\n     */\\n    function pause() external onlyOwner {\\n        _pause();\\n    }\\n\\n    function unpause() external onlyOwner {\\n        _unpause();\\n    }\\n\\n    /* ============================================================\\n       Internals\\n       ============================================================ */\\n\\n    function _promote() private {\\n        delete _live.tiers;\\n        delete _live.packs;\\n        _live.version = _queued.version;\\n        _live.activeFrom = _queued.activeFrom;\\n        _live.ticketPrice = _queued.ticketPrice;\\n        _live.hash = _queued.hash;\\n        for (uint256 i = 0; i < _queued.tiers.length; i++) _live.tiers.push(_queued.tiers[i]);\\n        for (uint256 i = 0; i < _queued.packs.length; i++) _live.packs.push(_queued.packs[i]);\\n        delete _liveMax;\\n        for (uint256 i = 0; i < _queuedMax.length; i++) _liveMax.push(_queuedMax[i]);\\n\\n        hasQueued = false;\\n        delete _queued.tiers;\\n        delete _queued.packs;\\n        delete _queuedMax;\\n\\n        // Anything that came through the queue was announced in advance\\n        liveWasAnnounced = true;\\n\\n        emit ConfigPromoted(_live.version, _live.hash);\\n    }\\n\\n    /**\\n     * Mean reward of one tier\\n     *\\n     * A uniformly drawn range [a, b] has expected value (a + b) / 2.\\n     * Computing EV from the lower bound alone would make the displayed house\\n     * edge look better than it is - which is worse than showing nothing at\\n     * all, because the owner would then price tickets off a wrong number.\\n     */\\n    function _meanPayout(uint128 payout, uint128 max) private pure returns (uint256) {\\n        if (max > payout) return (uint256(payout) + uint256(max)) / 2;\\n        return uint256(payout);\\n    }\\n\\n    function _evBps(Tier[] memory tiers, uint128[] memory maxes)\\n        private\\n        pure\\n        returns (uint256 ev)\\n    {\\n        for (uint256 i = 0; i < tiers.length; i++) {\\n            uint128 max = i < maxes.length ? maxes[i] : 0;\\n            ev += uint256(tiers[i].rateBps) * _meanPayout(tiers[i].payout, max);\\n        }\\n    }\\n\\n    function _validate(\\n        uint128 _ticketPrice,\\n        Tier[] memory _tiers,\\n        Pack[] memory _packs,\\n        uint128[] memory _maxes\\n    ) private pure {\\n        /* Must be exactly as long as tiers - not \\\"shorter is fine, pad with 0\\\".\\n           Allowing it shorter would mean an owner who meant to set ranges on\\n           the last few tiers, and sent an incomplete array, would silently get\\n           fixed payouts with nothing to flag the mistake. */\\n        if (_maxes.length != _tiers.length) revert PayoutMaxLengthMismatch(_tiers.length, _maxes.length);\\n\\n        for (uint256 i = 0; i < _tiers.length; i++) {\\n            /* The upper bound may not sit below the lower bound.\\n               Let through, the backend's RNG would get a negative range, which\\n               has no correct answer. 0 is allowed, since it means \\\"not a range,\\n               pays a fixed amount\\\". */\\n            if (_maxes[i] != 0 && _maxes[i] < _tiers[i].payout) {\\n                revert BadPayoutRange(_tiers[i].id, _tiers[i].payout, _maxes[i]);\\n            }\\n        }\\n\\n        if (_tiers.length < MIN_TIERS || _tiers.length > MAX_TIERS) revert BadTierCount();\\n        if (_packs.length > MAX_PACKS) revert BadPackCount();\\n        if (_ticketPrice == 0) revert ZeroTicketPrice();\\n\\n        uint256 sum;\\n        for (uint256 i = 0; i < _tiers.length; i++) {\\n            // A 0% rate is allowed - the owner may want to switch a tier off\\n            // for a while without removing it from the table and losing that\\n            // id's history\\n            sum += _tiers[i].rateBps;\\n\\n            for (uint256 j = i + 1; j < _tiers.length; j++) {\\n                if (_tiers[i].id == _tiers[j].id) revert DuplicateId(_tiers[i].id);\\n            }\\n        }\\n\\n        /* The total must be exactly 100.00%, not approximately\\n\\n           This is not about restricting what the owner may set. It is about\\n           the numbers on screen matching what actually decides a draw. Under\\n           100, the leftover range falls silently to the last tier; over 100,\\n           the trailing tiers can never come up at all. Either way the published\\n           percentages describe something other than reality, which is lying to\\n           players rather than making a business decision. */\\n        if (sum != BPS) revert RatesMustSumTo100();\\n\\n        for (uint256 i = 0; i < _packs.length; i++) {\\n            if (_packs[i].price == 0 || _packs[i].tickets == 0) revert ZeroTicketPrice();\\n            for (uint256 j = i + 1; j < _packs.length; j++) {\\n                if (_packs[i].id == _packs[j].id) revert DuplicateId(_packs[i].id);\\n            }\\n        }\\n\\n        /* NOTE: there is deliberately no house-edge check any more.\\n\\n           This contract used to reject any set where EV exceeded the ticket\\n           price, or where a pack's per-ticket price fell below EV, on the\\n           grounds of stopping the owner configuring a loss.\\n\\n           But the money at risk is the owner's own. Running a loss-leader\\n           promotion, giving away cheap tickets, or trying odd numbers while\\n           testing are all their business decisions, and it is not this\\n           contract's job to forbid them.\\n\\n           The /admin page still computes the edge and warns when it goes\\n           negative - but as a warning, not a wall. */\\n    }\\n\\n    /**\\n     * @dev This hash is what the backend binds to a round when the round opens,\\n     *      and what a player compares against to establish which rate table\\n     *      their draw used.\\n     */\\n    function _hashOf(\\n        uint64 v,\\n        uint128 _ticketPrice,\\n        Tier[] memory _tiers,\\n        Pack[] memory _packs,\\n        uint128[] memory _payoutMax\\n    ) private view returns (bytes32) {\\n        /* The range upper bounds must be inside the hash too. Otherwise reward\\n           ranges could be changed silently while a player's hash check still\\n           passed, which would make the published table a lie. */\\n        return\\n            keccak256(\\n                abi.encode(\\n                    block.chainid,\\n                    address(this),\\n                    v,\\n                    _ticketPrice,\\n                    _tiers,\\n                    _packs,\\n                    _payoutMax\\n                )\\n            );\\n    }\\n}\\n\",\"src/ClaimVault.sol\":\"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.24;\\n\\n/* ============================================================\\n   Voucher format - keep in sync with the backend signer\\n   ------------------------------------------------------------\\n   The backend signs claim vouchers off-chain. If these three\\n   things ever drift apart, every signature stops verifying:\\n\\n     1. domain name = \\\"YokClaimVault\\\"   (EIP712 constructor below)\\n     2. version     = \\\"1\\\"\\n     3. CLAIM_TYPEHASH - field order to, amount, nonce, deadline\\n\\n   The matching definition lives in lib/server/voucher.ts.\\n   ============================================================\\n\\n   How it works\\n   - Players open jade in the game and pay no gas at all; their\\n     balance accumulates in the database.\\n   - On withdrawal the backend signs one voucher\\n     (to, amount, nonce, deadline).\\n   - The player submits that voucher to claim() themselves and\\n     pays their own gas.\\n   - This contract checks the signature came from the configured\\n     signer, then transfers YOK out of the prize pool.\\n   - A nonce can never be reused, every voucher carries a\\n     deadline, and there is a pause switch in case a hole turns up.\\n   ============================================================ */\\n\\nimport {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport {IERC20Metadata} from \\\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\\\";\\nimport {GameConfig} from \\\"./GameConfig.sol\\\";\\nimport {SafeERC20} from \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport {EIP712} from \\\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\\\";\\nimport {ECDSA} from \\\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\\\";\\nimport {Ownable2Step, Ownable} from \\\"@openzeppelin/contracts/access/Ownable2Step.sol\\\";\\nimport {Pausable} from \\\"@openzeppelin/contracts/utils/Pausable.sol\\\";\\nimport {ReentrancyGuard} from \\\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\\\";\\n\\ncontract ClaimVault is EIP712, Ownable2Step, Pausable, ReentrancyGuard {\\n    using SafeERC20 for IERC20;\\n\\n    /// Must match CLAIM_TYPES in lib/server/voucher.ts\\n    bytes32 private constant CLAIM_TYPEHASH =\\n        keccak256(\\\"Claim(address to,uint256 amount,uint256 nonce,uint256 deadline)\\\");\\n\\n    IERC20 public immutable token;\\n\\n    /**\\n     * @notice Multiplier from whole units to token units\\n     * @dev GameConfig stores the ticket price as a whole number (40 YOK),\\n     *      but the token uses 18 decimals, so prices must be scaled before\\n     *      any transfer. Read from the real token at deploy time rather\\n     *      than hard-coded.\\n     */\\n    uint256 public immutable wholeUnit;\\n\\n    /// The contract holding ticket prices and drop rates\\n    GameConfig public gameConfig;\\n\\n    /**\\n     * @notice Lifetime tickets bought by this wallet - only ever goes up\\n     * @dev The backend subtracts the draws recorded in its database to work\\n     *      out the remaining balance. Stored cumulatively because draws do\\n     *      not happen on-chain; making the contract decrement would force\\n     *      the player to pay gas on every single draw.\\n     */\\n    mapping(address => uint256) public ticketsBought;\\n\\n    /// The wallet the backend signs vouchers with (should hold no funds)\\n    address public signer;\\n\\n    /// user => nonce => already used\\n    mapping(address => mapping(uint256 => bool)) public claimed;\\n\\n    /* ---------------- payout cap per window ----------------\\n       The signer key lives on the server. If that server is breached, an\\n       attacker could sign unlimited vouchers and drain the whole pool in\\n       seconds. This cap bounds the damage to a single window, leaving time\\n       to notice and hit pause.\\n       -------------------------------------------------------- */\\n\\n    /// Length of one window, in seconds\\n    uint64 public payoutWindow;\\n    /// Most that can be paid out within a single window\\n    uint256 public payoutCap;\\n    /// When the current window started\\n    uint64 public windowStart;\\n    /// How much has been paid out so far in this window\\n    uint256 public paidInWindow;\\n\\n    /* ---------------- timelock on sweeping the pool ----------------\\n       sweep() used to empty the whole pool instantly, including rewards\\n       players had earned but not yet withdrawn. It now has to be announced\\n       in advance, which gives those players time to take their own funds\\n       out first.\\n       -------------------------------------------------------- */\\n\\n    uint64 public constant SWEEP_DELAY = 3 days;\\n\\n    struct PendingSweep {\\n        address to;\\n        uint256 amount;\\n        uint64 readyAt;\\n    }\\n\\n    PendingSweep public pendingSweep;\\n\\n    event Claimed(address indexed to, uint256 amount, uint256 nonce);\\n    event SignerChanged(address indexed oldSigner, address indexed newSigner);\\n    event Swept(address indexed to, uint256 amount);\\n    /// Pool top-up - the event exists so anyone can audit when and how much\\n    event Funded(address indexed from, uint256 amount, uint256 newBalance);\\n    event PayoutLimitChanged(uint256 cap, uint64 window);\\n    event GameConfigChanged(address indexed oldConfig, address indexed newConfig);\\n    /// Ticket purchase - configVersion/configHash record which ruleset was live\\n    event TicketsBought(\\n        address indexed buyer,\\n        uint256 count,\\n        uint256 cost,\\n        uint256 totalBought,\\n        uint64 configVersion,\\n        bytes32 configHash\\n    );\\n    /// Pack purchase - always emitted alongside TicketsBought, adds which pack\\n    event PackBought(\\n        address indexed buyer,\\n        bytes32 indexed packId,\\n        uint256 count,\\n        uint256 cost,\\n        uint256 totalBought,\\n        uint64 configVersion,\\n        bytes32 configHash\\n    );\\n    event SweepRequested(address indexed to, uint256 amount, uint64 readyAt);\\n    event SweepCancelled(address indexed to, uint256 amount);\\n\\n    error DeadlinePassed();\\n    error AlreadyClaimed();\\n    error BadSignature();\\n    error ZeroAmount();\\n    /// Prize pool cannot cover this claim - kept as its own error so it does\\n    /// not surface as an opaque token failure\\n    error PoolTooLow(uint256 requested, uint256 available);\\n    /// Over this window's payout cap - wait for the next window, or the owner\\n    /// can raise the cap\\n    error PayoutCapReached(uint256 requested, uint256 remainingInWindow);\\n    error ZeroCap();\\n    error ZeroWindow();\\n    error NoPendingSweep();\\n    error SweepNotReady(uint64 readyAt);\\n    error GameConfigNotSet();\\n    error GamePaused();\\n    error ZeroTickets();\\n    /// No pack with this id in the live ruleset - the owner may have just\\n    /// removed it\\n    error PackNotFound(bytes32 packId);\\n\\n    constructor(\\n        IERC20 _token,\\n        address _signer,\\n        address _owner,\\n        uint256 _payoutCap,\\n        uint64 _payoutWindow\\n    ) EIP712(\\\"YokClaimVault\\\", \\\"1\\\") Ownable(_owner) {\\n        if (_payoutCap == 0) revert ZeroCap();\\n        if (_payoutWindow == 0) revert ZeroWindow();\\n\\n        token = _token;\\n        wholeUnit = 10 ** IERC20Metadata(address(_token)).decimals();\\n        signer = _signer;\\n        payoutCap = _payoutCap;\\n        payoutWindow = _payoutWindow;\\n        windowStart = uint64(block.timestamp);\\n\\n        emit PayoutLimitChanged(_payoutCap, _payoutWindow);\\n    }\\n\\n    /**\\n     * @notice Called by the player to collect their reward\\n     * @param signature EIP-712 signature produced by the backend\\n     */\\n    function claim(\\n        address to,\\n        uint256 amount,\\n        uint256 nonce,\\n        uint256 deadline,\\n        bytes calldata signature\\n    ) external whenNotPaused nonReentrant {\\n        if (block.timestamp > deadline) revert DeadlinePassed();\\n        if (amount == 0) revert ZeroAmount();\\n        if (claimed[to][nonce]) revert AlreadyClaimed();\\n\\n        uint256 pool = token.balanceOf(address(this));\\n        if (pool < amount) revert PoolTooLow(amount, pool);\\n\\n        // Roll into a new window if the old one has expired\\n        uint256 paid = paidInWindow;\\n        if (block.timestamp >= windowStart + payoutWindow) {\\n            windowStart = uint64(block.timestamp);\\n            paid = 0;\\n        }\\n        if (paid + amount > payoutCap) revert PayoutCapReached(amount, payoutCap - paid);\\n        paidInWindow = paid + amount;\\n\\n        bytes32 digest = _hashTypedDataV4(\\n            keccak256(abi.encode(CLAIM_TYPEHASH, to, amount, nonce, deadline))\\n        );\\n        if (ECDSA.recover(digest, signature) != signer) revert BadSignature();\\n\\n        // Mark before transferring (checks-effects-interactions)\\n        claimed[to][nonce] = true;\\n\\n        token.safeTransfer(to, amount);\\n        emit Claimed(to, amount, nonce);\\n    }\\n\\n    /* ---------------- buying tickets ---------------- */\\n\\n    /**\\n     * @notice Buy tickets with your own YOK; the payment joins the prize pool\\n     * @dev Requires an approval to this contract first, since YOK has no\\n     *      permit. The price is read live from GameConfig on every call and\\n     *      never cached, so there is no way for the on-chain price and the\\n     *      price actually charged to disagree.\\n     */\\n    function buyTickets(uint256 count) external whenNotPaused nonReentrant {\\n        if (count == 0) revert ZeroTickets();\\n        if (address(gameConfig) == address(0)) revert GameConfigNotSet();\\n        // This is where GameConfig's paused flag is actually enforced on-chain\\n        if (gameConfig.paused()) revert GamePaused();\\n\\n        GameConfig.Config memory cfg = gameConfig.currentConfig();\\n        uint256 cost = count * uint256(cfg.ticketPrice) * wholeUnit;\\n\\n        ticketsBought[msg.sender] += count;\\n        token.safeTransferFrom(msg.sender, address(this), cost);\\n\\n        emit TicketsBought(\\n            msg.sender,\\n            count,\\n            cost,\\n            ticketsBought[msg.sender],\\n            cfg.version,\\n            cfg.hash\\n        );\\n    }\\n\\n    /**\\n     * @notice Buy a bundle defined in GameConfig, cheaper per ticket than singles\\n     * @dev Separate from buyTickets() because a pack has a flat price rather\\n     *      than count * ticketPrice. Tickets granted = tickets + bonus, and\\n     *      the amount charged is that pack's price. GameConfig already\\n     *      guarantees no pack's per-ticket price falls below EV.\\n     */\\n    function buyPack(bytes32 packId) external whenNotPaused nonReentrant {\\n        if (address(gameConfig) == address(0)) revert GameConfigNotSet();\\n        if (gameConfig.paused()) revert GamePaused();\\n\\n        GameConfig.Config memory cfg = gameConfig.currentConfig();\\n        GameConfig.Pack memory pack = _findPack(cfg, packId);\\n\\n        uint256 count = uint256(pack.tickets) + uint256(pack.bonus);\\n        uint256 cost = uint256(pack.price) * wholeUnit;\\n\\n        ticketsBought[msg.sender] += count;\\n        token.safeTransferFrom(msg.sender, address(this), cost);\\n\\n        emit PackBought(msg.sender, packId, count, cost, ticketsBought[msg.sender], cfg.version, cfg.hash);\\n        emit TicketsBought(msg.sender, count, cost, ticketsBought[msg.sender], cfg.version, cfg.hash);\\n    }\\n\\n    /// Cost of `count` tickets right now - the site shows this before confirming\\n    function quote(uint256 count) external view returns (uint256) {\\n        if (address(gameConfig) == address(0)) revert GameConfigNotSet();\\n        return count * uint256(gameConfig.currentConfig().ticketPrice) * wholeUnit;\\n    }\\n\\n    /// Price and ticket count of one pack right now - reverts if no such pack\\n    function quotePack(bytes32 packId) external view returns (uint256 cost, uint256 count) {\\n        if (address(gameConfig) == address(0)) revert GameConfigNotSet();\\n        GameConfig.Pack memory pack = _findPack(gameConfig.currentConfig(), packId);\\n        return (uint256(pack.price) * wholeUnit, uint256(pack.tickets) + uint256(pack.bonus));\\n    }\\n\\n    function _findPack(\\n        GameConfig.Config memory cfg,\\n        bytes32 packId\\n    ) private pure returns (GameConfig.Pack memory) {\\n        for (uint256 i = 0; i < cfg.packs.length; i++) {\\n            if (cfg.packs[i].id == packId) return cfg.packs[i];\\n        }\\n        revert PackNotFound(packId);\\n    }\\n\\n    /* ---------------- prize pool ---------------- */\\n\\n    /// What the pool can pay out right now - the site and backend check this\\n    /// before letting anyone play\\n    function poolBalance() external view returns (uint256) {\\n        return token.balanceOf(address(this));\\n    }\\n\\n    /**\\n     * @notice Top up the prize pool\\n     * @dev Transferring YOK straight to this address funds the pool just as\\n     *      well, but leaves no event to audit later, so prefer this path\\n     *      (requires an approval first). Anyone may fund, not just the owner.\\n     *      Once in, funds can only leave as rewards or via the owner's sweep().\\n     */\\n    function fund(uint256 amount) external {\\n        if (amount == 0) revert ZeroAmount();\\n        token.safeTransferFrom(msg.sender, address(this), amount);\\n        emit Funded(msg.sender, amount, token.balanceOf(address(this)));\\n    }\\n\\n    /* ---------------- owner side ---------------- */\\n\\n    /// Repoint at a GameConfig - in case a new one is deployed later\\n    function setGameConfig(address newConfig) external onlyOwner {\\n        emit GameConfigChanged(address(gameConfig), newConfig);\\n        gameConfig = GameConfig(newConfig);\\n    }\\n\\n    function setSigner(address newSigner) external onlyOwner {\\n        emit SignerChanged(signer, newSigner);\\n        signer = newSigner;\\n    }\\n\\n    /// Emergency stop, for when an exploit turns up\\n    function pause() external onlyOwner {\\n        _pause();\\n    }\\n\\n    function unpause() external onlyOwner {\\n        _unpause();\\n    }\\n\\n    /// Adjust the per-window payout cap - used as volume grows after launch\\n    function setPayoutLimit(uint256 cap, uint64 window) external onlyOwner {\\n        if (cap == 0) revert ZeroCap();\\n        if (window == 0) revert ZeroWindow();\\n        payoutCap = cap;\\n        payoutWindow = window;\\n        emit PayoutLimitChanged(cap, window);\\n    }\\n\\n    /**\\n     * @notice Announce an intent to sweep funds out; nothing moves yet\\n     * @dev SWEEP_DELAY must elapse before executeSweep() will go through.\\n     *      In the meantime players see the event and can withdraw their own\\n     *      rewards in time. Were sweeping instant, the owner could take\\n     *      rewards players had already earned with nobody able to react.\\n     */\\n    function requestSweep(address to, uint256 amount) external onlyOwner {\\n        if (amount == 0) revert ZeroAmount();\\n        uint64 readyAt = uint64(block.timestamp) + SWEEP_DELAY;\\n        pendingSweep = PendingSweep({to: to, amount: amount, readyAt: readyAt});\\n        emit SweepRequested(to, amount, readyAt);\\n    }\\n\\n    function cancelSweep() external onlyOwner {\\n        PendingSweep memory p = pendingSweep;\\n        if (p.readyAt == 0) revert NoPendingSweep();\\n        delete pendingSweep;\\n        emit SweepCancelled(p.to, p.amount);\\n    }\\n\\n    /// Actually move the funds - only once the announced delay has passed\\n    function executeSweep() external onlyOwner {\\n        PendingSweep memory p = pendingSweep;\\n        if (p.readyAt == 0) revert NoPendingSweep();\\n        if (block.timestamp < p.readyAt) revert SweepNotReady(p.readyAt);\\n\\n        delete pendingSweep;\\n        token.safeTransfer(p.to, p.amount);\\n        emit Swept(p.to, p.amount);\\n    }\\n\\n    /// Exposed so the site can verify the domain matches\\n    function domainSeparator() external view returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n}\\n\",\"@openzeppelin/contracts/access/Ownable.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {Context} from \\\"../utils/Context.sol\\\";\\n\\n/**\\n * @dev Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * The initial owner is set to the address provided by the deployer. This can\\n * later be changed with {transferOwnership}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable is Context {\\n    address private _owner;\\n\\n    /**\\n     * @dev The caller account is not authorized to perform an operation.\\n     */\\n    error OwnableUnauthorizedAccount(address account);\\n\\n    /**\\n     * @dev The owner is not a valid owner account. (eg. `address(0)`)\\n     */\\n    error OwnableInvalidOwner(address owner);\\n\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /**\\n     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\\n     */\\n    constructor(address initialOwner) {\\n        if (initialOwner == address(0)) {\\n            revert OwnableInvalidOwner(address(0));\\n        }\\n        _transferOwnership(initialOwner);\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        _checkOwner();\\n        _;\\n    }\\n\\n    /**\\n     * @dev Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @dev Throws if the sender is not the owner.\\n     */\\n    function _checkOwner() internal view virtual {\\n        if (owner() != _msgSender()) {\\n            revert OwnableUnauthorizedAccount(_msgSender());\\n        }\\n    }\\n\\n    /**\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby disabling any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() public virtual onlyOwner {\\n        _transferOwnership(address(0));\\n    }\\n\\n    /**\\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n     * Can only be called by the current owner.\\n     */\\n    function transferOwnership(address newOwner) public virtual onlyOwner {\\n        if (newOwner == address(0)) {\\n            revert OwnableInvalidOwner(address(0));\\n        }\\n        _transferOwnership(newOwner);\\n    }\\n\\n    /**\\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n     * Internal function without access restriction.\\n     */\\n    function _transferOwnership(address newOwner) internal virtual {\\n        address oldOwner = _owner;\\n        _owner = newOwner;\\n        emit OwnershipTransferred(oldOwner, newOwner);\\n    }\\n}\\n\",\"@openzeppelin/contracts/access/Ownable2Step.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {Ownable} from \\\"./Ownable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * The initial owner is specified at deployment time in the constructor for `Ownable`. This\\n * can later be changed with {transferOwnership} and {acceptOwnership}.\\n *\\n * This module is used through inheritance. It will make available all functions\\n * from parent (Ownable).\\n */\\nabstract contract Ownable2Step is Ownable {\\n    address private _pendingOwner;\\n\\n    event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n    /**\\n     * @dev Returns the address of the pending owner.\\n     */\\n    function pendingOwner() public view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n     * Can only be called by the current owner.\\n     */\\n    function transferOwnership(address newOwner) public virtual override onlyOwner {\\n        _pendingOwner = newOwner;\\n        emit OwnershipTransferStarted(owner(), newOwner);\\n    }\\n\\n    /**\\n     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n     * Internal function without access restriction.\\n     */\\n    function _transferOwnership(address newOwner) internal virtual override {\\n        delete _pendingOwner;\\n        super._transferOwnership(newOwner);\\n    }\\n\\n    /**\\n     * @dev The new owner accepts the ownership transfer.\\n     */\\n    function acceptOwnership() public virtual {\\n        address sender = _msgSender();\\n        if (pendingOwner() != sender) {\\n            revert OwnableUnauthorizedAccount(sender);\\n        }\\n        _transferOwnership(sender);\\n    }\\n}\\n\",\"@openzeppelin/contracts/interfaces/IERC5267.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)\\n\\npragma solidity ^0.8.20;\\n\\ninterface IERC5267 {\\n    /**\\n     * @dev MAY be emitted to signal that the domain could have changed.\\n     */\\n    event EIP712DomainChanged();\\n\\n    /**\\n     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\\n     * signature.\\n     */\\n    function eip712Domain()\\n        external\\n        view\\n        returns (\\n            bytes1 fields,\\n            string memory name,\\n            string memory version,\\n            uint256 chainId,\\n            address verifyingContract,\\n            bytes32 salt,\\n            uint256[] memory extensions\\n        );\\n}\\n\",\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n    /**\\n     * @dev Returns the value of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the value of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address to, uint256 value) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\\n     * caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 value) external returns (bool);\\n\\n    /**\\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the\\n     * allowance mechanism. `value` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(address from, address to, uint256 value) external returns (bool);\\n}\\n\",\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {IERC20} from \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * ==== Security Considerations\\n *\\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\\n * generally recommended is:\\n *\\n * ```solidity\\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\\n *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\\n *     doThing(..., value);\\n * }\\n *\\n * function doThing(..., uint256 value) public {\\n *     token.safeTransferFrom(msg.sender, address(this), value);\\n *     ...\\n * }\\n * ```\\n *\\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\\n * {SafeERC20-safeTransferFrom}).\\n *\\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\\n * contracts should have entry points that don't rely on permit.\\n */\\ninterface IERC20Permit {\\n    /**\\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n     * given ``owner``'s signed approval.\\n     *\\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n     * ordering also apply here.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `deadline` must be a timestamp in the future.\\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n     * over the EIP712-formatted function arguments.\\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\\n     *\\n     * For more information on the signature format, see the\\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n     * section].\\n     *\\n     * CAUTION: See Security Considerations above.\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @dev Returns the current nonce for `owner`. This value must be\\n     * included whenever a signature is generated for {permit}.\\n     *\\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n     * prevents a signature from being used multiple times.\\n     */\\n    function nonces(address owner) external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {IERC20} from \\\"../IERC20.sol\\\";\\nimport {IERC20Permit} from \\\"../extensions/IERC20Permit.sol\\\";\\nimport {Address} from \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    /**\\n     * @dev An operation with an ERC20 token failed.\\n     */\\n    error SafeERC20FailedOperation(address token);\\n\\n    /**\\n     * @dev Indicates a failed `decreaseAllowance` request.\\n     */\\n    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);\\n\\n    /**\\n     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\\n     * non-reverting calls are assumed to be successful.\\n     */\\n    function safeTransfer(IERC20 token, address to, uint256 value) internal {\\n        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));\\n    }\\n\\n    /**\\n     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\\n     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\\n     */\\n    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\\n        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));\\n    }\\n\\n    /**\\n     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n     * non-reverting calls are assumed to be successful.\\n     */\\n    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n        uint256 oldAllowance = token.allowance(address(this), spender);\\n        forceApprove(token, spender, oldAllowance + value);\\n    }\\n\\n    /**\\n     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\\n     * value, non-reverting calls are assumed to be successful.\\n     */\\n    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {\\n        unchecked {\\n            uint256 currentAllowance = token.allowance(address(this), spender);\\n            if (currentAllowance < requestedDecrease) {\\n                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);\\n            }\\n            forceApprove(token, spender, currentAllowance - requestedDecrease);\\n        }\\n    }\\n\\n    /**\\n     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\\n     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\\n     * to be set to zero before setting it to a non-zero value, such as USDT.\\n     */\\n    function forceApprove(IERC20 token, address spender, uint256 value) internal {\\n        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));\\n\\n        if (!_callOptionalReturnBool(token, approvalCall)) {\\n            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));\\n            _callOptionalReturn(token, approvalCall);\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data);\\n        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {\\n            revert SafeERC20FailedOperation(address(token));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     *\\n     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\\n     */\\n    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\\n        // and not revert is the subcall reverts.\\n\\n        (bool success, bytes memory returndata) = address(token).call(data);\\n        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/Address.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev The ETH balance of the account is not enough to perform the operation.\\n     */\\n    error AddressInsufficientBalance(address account);\\n\\n    /**\\n     * @dev There's no code at `target` (it is not a contract).\\n     */\\n    error AddressEmptyCode(address target);\\n\\n    /**\\n     * @dev A call to an address target failed. The target may have reverted.\\n     */\\n    error FailedInnerCall();\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        if (address(this).balance < amount) {\\n            revert AddressInsufficientBalance(address(this));\\n        }\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        if (!success) {\\n            revert FailedInnerCall();\\n        }\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason or custom error, it is bubbled\\n     * up by this function (like regular Solidity function calls). However, if\\n     * the call reverted with no returned reason, this function reverts with a\\n     * {FailedInnerCall} error.\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     */\\n    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n        if (address(this).balance < value) {\\n            revert AddressInsufficientBalance(address(this));\\n        }\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResultFromTarget(target, success, returndata);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResultFromTarget(target, success, returndata);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResultFromTarget(target, success, returndata);\\n    }\\n\\n    /**\\n     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\\n     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an\\n     * unsuccessful call.\\n     */\\n    function verifyCallResultFromTarget(\\n        address target,\\n        bool success,\\n        bytes memory returndata\\n    ) internal view returns (bytes memory) {\\n        if (!success) {\\n            _revert(returndata);\\n        } else {\\n            // only check if target is a contract if the call was successful and the return data is empty\\n            // otherwise we already know that it was a contract\\n            if (returndata.length == 0 && target.code.length == 0) {\\n                revert AddressEmptyCode(target);\\n            }\\n            return returndata;\\n        }\\n    }\\n\\n    /**\\n     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\\n     * revert reason or with a default {FailedInnerCall} error.\\n     */\\n    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {\\n        if (!success) {\\n            _revert(returndata);\\n        } else {\\n            return returndata;\\n        }\\n    }\\n\\n    /**\\n     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.\\n     */\\n    function _revert(bytes memory returndata) private pure {\\n        // Look for revert reason and bubble it up if present\\n        if (returndata.length > 0) {\\n            // The easiest way to bubble the revert reason is using memory via assembly\\n            /// @solidity memory-safe-assembly\\n            assembly {\\n                let returndata_size := mload(returndata)\\n                revert(add(32, returndata), returndata_size)\\n            }\\n        } else {\\n            revert FailedInnerCall();\\n        }\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/Context.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n\\n    function _contextSuffixLength() internal view virtual returns (uint256) {\\n        return 0;\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/Pausable.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {Context} from \\\"../utils/Context.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract Pausable is Context {\\n    bool private _paused;\\n\\n    /**\\n     * @dev Emitted when the pause is triggered by `account`.\\n     */\\n    event Paused(address account);\\n\\n    /**\\n     * @dev Emitted when the pause is lifted by `account`.\\n     */\\n    event Unpaused(address account);\\n\\n    /**\\n     * @dev The operation failed because the contract is paused.\\n     */\\n    error EnforcedPause();\\n\\n    /**\\n     * @dev The operation failed because the contract is not paused.\\n     */\\n    error ExpectedPause();\\n\\n    /**\\n     * @dev Initializes the contract in unpaused state.\\n     */\\n    constructor() {\\n        _paused = false;\\n    }\\n\\n    /**\\n     * @dev Modifier to make a function callable only when the contract is not paused.\\n     *\\n     * Requirements:\\n     *\\n     * - The contract must not be paused.\\n     */\\n    modifier whenNotPaused() {\\n        _requireNotPaused();\\n        _;\\n    }\\n\\n    /**\\n     * @dev Modifier to make a function callable only when the contract is paused.\\n     *\\n     * Requirements:\\n     *\\n     * - The contract must be paused.\\n     */\\n    modifier whenPaused() {\\n        _requirePaused();\\n        _;\\n    }\\n\\n    /**\\n     * @dev Returns true if the contract is paused, and false otherwise.\\n     */\\n    function paused() public view virtual returns (bool) {\\n        return _paused;\\n    }\\n\\n    /**\\n     * @dev Throws if the contract is paused.\\n     */\\n    function _requireNotPaused() internal view virtual {\\n        if (paused()) {\\n            revert EnforcedPause();\\n        }\\n    }\\n\\n    /**\\n     * @dev Throws if the contract is not paused.\\n     */\\n    function _requirePaused() internal view virtual {\\n        if (!paused()) {\\n            revert ExpectedPause();\\n        }\\n    }\\n\\n    /**\\n     * @dev Triggers stopped state.\\n     *\\n     * Requirements:\\n     *\\n     * - The contract must not be paused.\\n     */\\n    function _pause() internal virtual whenNotPaused {\\n        _paused = true;\\n        emit Paused(_msgSender());\\n    }\\n\\n    /**\\n     * @dev Returns to normal state.\\n     *\\n     * Requirements:\\n     *\\n     * - The contract must be paused.\\n     */\\n    function _unpause() internal virtual whenPaused {\\n        _paused = false;\\n        emit Unpaused(_msgSender());\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n    // Booleans are more expensive than uint256 or any type that takes up a full\\n    // word because each write operation emits an extra SLOAD to first read the\\n    // slot's contents, replace the bits taken up by the boolean, and then write\\n    // back. This is the compiler's defense against contract upgrades and\\n    // pointer aliasing, and it cannot be disabled.\\n\\n    // The values being non-zero value makes deployment a bit more expensive,\\n    // but in exchange the refund on every call to nonReentrant will be lower in\\n    // amount. Since refunds are capped to a percentage of the total\\n    // transaction's gas, it is best to keep them low in cases like this one, to\\n    // increase the likelihood of the full refund coming into effect.\\n    uint256 private constant NOT_ENTERED = 1;\\n    uint256 private constant ENTERED = 2;\\n\\n    uint256 private _status;\\n\\n    /**\\n     * @dev Unauthorized reentrant call.\\n     */\\n    error ReentrancyGuardReentrantCall();\\n\\n    constructor() {\\n        _status = NOT_ENTERED;\\n    }\\n\\n    /**\\n     * @dev Prevents a contract from calling itself, directly or indirectly.\\n     * Calling a `nonReentrant` function from another `nonReentrant`\\n     * function is not supported. It is possible to prevent this from happening\\n     * by making the `nonReentrant` function external, and making it call a\\n     * `private` function that does the actual work.\\n     */\\n    modifier nonReentrant() {\\n        _nonReentrantBefore();\\n        _;\\n        _nonReentrantAfter();\\n    }\\n\\n    function _nonReentrantBefore() private {\\n        // On the first call to nonReentrant, _status will be NOT_ENTERED\\n        if (_status == ENTERED) {\\n            revert ReentrancyGuardReentrantCall();\\n        }\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = ENTERED;\\n    }\\n\\n    function _nonReentrantAfter() private {\\n        // By storing the original value once again, a refund is triggered (see\\n        // https://eips.ethereum.org/EIPS/eip-2200)\\n        _status = NOT_ENTERED;\\n    }\\n\\n    /**\\n     * @dev Returns true if the reentrancy guard is currently set to \\\"entered\\\", which indicates there is a\\n     * `nonReentrant` function in the call stack.\\n     */\\n    function _reentrancyGuardEntered() internal view returns (bool) {\\n        return _status == ENTERED;\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/ShortStrings.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {StorageSlot} from \\\"./StorageSlot.sol\\\";\\n\\n// | string  | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA   |\\n// | length  | 0x                                                              BB |\\ntype ShortString is bytes32;\\n\\n/**\\n * @dev This library provides functions to convert short memory strings\\n * into a `ShortString` type that can be used as an immutable variable.\\n *\\n * Strings of arbitrary length can be optimized using this library if\\n * they are short enough (up to 31 bytes) by packing them with their\\n * length (1 byte) in a single EVM word (32 bytes). Additionally, a\\n * fallback mechanism can be used for every other case.\\n *\\n * Usage example:\\n *\\n * ```solidity\\n * contract Named {\\n *     using ShortStrings for *;\\n *\\n *     ShortString private immutable _name;\\n *     string private _nameFallback;\\n *\\n *     constructor(string memory contractName) {\\n *         _name = contractName.toShortStringWithFallback(_nameFallback);\\n *     }\\n *\\n *     function name() external view returns (string memory) {\\n *         return _name.toStringWithFallback(_nameFallback);\\n *     }\\n * }\\n * ```\\n */\\nlibrary ShortStrings {\\n    // Used as an identifier for strings longer than 31 bytes.\\n    bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;\\n\\n    error StringTooLong(string str);\\n    error InvalidShortString();\\n\\n    /**\\n     * @dev Encode a string of at most 31 chars into a `ShortString`.\\n     *\\n     * This will trigger a `StringTooLong` error is the input string is too long.\\n     */\\n    function toShortString(string memory str) internal pure returns (ShortString) {\\n        bytes memory bstr = bytes(str);\\n        if (bstr.length > 31) {\\n            revert StringTooLong(str);\\n        }\\n        return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));\\n    }\\n\\n    /**\\n     * @dev Decode a `ShortString` back to a \\\"normal\\\" string.\\n     */\\n    function toString(ShortString sstr) internal pure returns (string memory) {\\n        uint256 len = byteLength(sstr);\\n        // using `new string(len)` would work locally but is not memory safe.\\n        string memory str = new string(32);\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            mstore(str, len)\\n            mstore(add(str, 0x20), sstr)\\n        }\\n        return str;\\n    }\\n\\n    /**\\n     * @dev Return the length of a `ShortString`.\\n     */\\n    function byteLength(ShortString sstr) internal pure returns (uint256) {\\n        uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;\\n        if (result > 31) {\\n            revert InvalidShortString();\\n        }\\n        return result;\\n    }\\n\\n    /**\\n     * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.\\n     */\\n    function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {\\n        if (bytes(value).length < 32) {\\n            return toShortString(value);\\n        } else {\\n            StorageSlot.getStringSlot(store).value = value;\\n            return ShortString.wrap(FALLBACK_SENTINEL);\\n        }\\n    }\\n\\n    /**\\n     * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.\\n     */\\n    function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {\\n        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {\\n            return toString(value);\\n        } else {\\n            return store;\\n        }\\n    }\\n\\n    /**\\n     * @dev Return the length of a string that was encoded to `ShortString` or written to storage using\\n     * {setWithFallback}.\\n     *\\n     * WARNING: This will return the \\\"byte length\\\" of the string. This may not reflect the actual length in terms of\\n     * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.\\n     */\\n    function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {\\n        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {\\n            return byteLength(value);\\n        } else {\\n            return bytes(store).length;\\n        }\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/StorageSlot.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)\\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Library for reading and writing primitive types to specific storage slots.\\n *\\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\\n * This library helps with reading and writing to such slots without the need for inline assembly.\\n *\\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\\n *\\n * Example usage to set ERC1967 implementation slot:\\n * ```solidity\\n * contract ERC1967 {\\n *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\\n *\\n *     function _getImplementation() internal view returns (address) {\\n *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\\n *     }\\n *\\n *     function _setImplementation(address newImplementation) internal {\\n *         require(newImplementation.code.length > 0);\\n *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\\n *     }\\n * }\\n * ```\\n */\\nlibrary StorageSlot {\\n    struct AddressSlot {\\n        address value;\\n    }\\n\\n    struct BooleanSlot {\\n        bool value;\\n    }\\n\\n    struct Bytes32Slot {\\n        bytes32 value;\\n    }\\n\\n    struct Uint256Slot {\\n        uint256 value;\\n    }\\n\\n    struct StringSlot {\\n        string value;\\n    }\\n\\n    struct BytesSlot {\\n        bytes value;\\n    }\\n\\n    /**\\n     * @dev Returns an `AddressSlot` with member `value` located at `slot`.\\n     */\\n    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            r.slot := slot\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\\n     */\\n    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            r.slot := slot\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\\n     */\\n    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            r.slot := slot\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\\n     */\\n    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            r.slot := slot\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns an `StringSlot` with member `value` located at `slot`.\\n     */\\n    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            r.slot := slot\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\\n     */\\n    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            r.slot := store.slot\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns an `BytesSlot` with member `value` located at `slot`.\\n     */\\n    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            r.slot := slot\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\\n     */\\n    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            r.slot := store.slot\\n        }\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/Strings.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {Math} from \\\"./math/Math.sol\\\";\\nimport {SignedMath} from \\\"./math/SignedMath.sol\\\";\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant HEX_DIGITS = \\\"0123456789abcdef\\\";\\n    uint8 private constant ADDRESS_LENGTH = 20;\\n\\n    /**\\n     * @dev The `value` string doesn't fit in the specified `length`.\\n     */\\n    error StringsInsufficientHexLength(uint256 value, uint256 length);\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\\n     */\\n    function toString(uint256 value) internal pure returns (string memory) {\\n        unchecked {\\n            uint256 length = Math.log10(value) + 1;\\n            string memory buffer = new string(length);\\n            uint256 ptr;\\n            /// @solidity memory-safe-assembly\\n            assembly {\\n                ptr := add(buffer, add(32, length))\\n            }\\n            while (true) {\\n                ptr--;\\n                /// @solidity memory-safe-assembly\\n                assembly {\\n                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))\\n                }\\n                value /= 10;\\n                if (value == 0) break;\\n            }\\n            return buffer;\\n        }\\n    }\\n\\n    /**\\n     * @dev Converts a `int256` to its ASCII `string` decimal representation.\\n     */\\n    function toStringSigned(int256 value) internal pure returns (string memory) {\\n        return string.concat(value < 0 ? \\\"-\\\" : \\\"\\\", toString(SignedMath.abs(value)));\\n    }\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\\n     */\\n    function toHexString(uint256 value) internal pure returns (string memory) {\\n        unchecked {\\n            return toHexString(value, Math.log256(value) + 1);\\n        }\\n    }\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\\n     */\\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\\n        uint256 localValue = value;\\n        bytes memory buffer = new bytes(2 * length + 2);\\n        buffer[0] = \\\"0\\\";\\n        buffer[1] = \\\"x\\\";\\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\\n            buffer[i] = HEX_DIGITS[localValue & 0xf];\\n            localValue >>= 4;\\n        }\\n        if (localValue != 0) {\\n            revert StringsInsufficientHexLength(value, length);\\n        }\\n        return string(buffer);\\n    }\\n\\n    /**\\n     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\\n     * representation.\\n     */\\n    function toHexString(address addr) internal pure returns (string memory) {\\n        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);\\n    }\\n\\n    /**\\n     * @dev Returns true if the two strings are equal.\\n     */\\n    function equal(string memory a, string memory b) internal pure returns (bool) {\\n        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\\n *\\n * These functions can be used to verify that a message was signed by the holder\\n * of the private keys of a given address.\\n */\\nlibrary ECDSA {\\n    enum RecoverError {\\n        NoError,\\n        InvalidSignature,\\n        InvalidSignatureLength,\\n        InvalidSignatureS\\n    }\\n\\n    /**\\n     * @dev The signature derives the `address(0)`.\\n     */\\n    error ECDSAInvalidSignature();\\n\\n    /**\\n     * @dev The signature has an invalid length.\\n     */\\n    error ECDSAInvalidSignatureLength(uint256 length);\\n\\n    /**\\n     * @dev The signature has an S value that is in the upper half order.\\n     */\\n    error ECDSAInvalidSignatureS(bytes32 s);\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\\n     * return address(0) without also returning an error description. Errors are documented using an enum (error type)\\n     * and a bytes32 providing additional information about the error.\\n     *\\n     * If no error is returned, then the address can be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\\n     *\\n     * Documentation for signature generation:\\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {\\n        if (signature.length == 65) {\\n            bytes32 r;\\n            bytes32 s;\\n            uint8 v;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            /// @solidity memory-safe-assembly\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                s := mload(add(signature, 0x40))\\n                v := byte(0, mload(add(signature, 0x60)))\\n            }\\n            return tryRecover(hash, v, r, s);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature`. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);\\n        _throwError(error, errorArg);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\\n     *\\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\\n     */\\n    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {\\n        unchecked {\\n            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\\n            // We do not check for an overflow here since the shift operation results in 0 or 1.\\n            uint8 v = uint8((uint256(vs) >> 255) + 27);\\n            return tryRecover(hash, v, r, s);\\n        }\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     */\\n    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);\\n        _throwError(error, errorArg);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError, bytes32) {\\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\\n        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\\n        //\\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\\n        // these malleable signatures as well.\\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\\n            return (address(0), RecoverError.InvalidSignatureS, s);\\n        }\\n\\n        // If the signature is valid (and not malleable), return the signer address\\n        address signer = ecrecover(hash, v, r, s);\\n        if (signer == address(0)) {\\n            return (address(0), RecoverError.InvalidSignature, bytes32(0));\\n        }\\n\\n        return (signer, RecoverError.NoError, bytes32(0));\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);\\n        _throwError(error, errorArg);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.\\n     */\\n    function _throwError(RecoverError error, bytes32 errorArg) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert ECDSAInvalidSignature();\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert ECDSAInvalidSignatureLength(uint256(errorArg));\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert ECDSAInvalidSignatureS(errorArg);\\n        }\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {MessageHashUtils} from \\\"./MessageHashUtils.sol\\\";\\nimport {ShortStrings, ShortString} from \\\"../ShortStrings.sol\\\";\\nimport {IERC5267} from \\\"../../interfaces/IERC5267.sol\\\";\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\\n *\\n * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\\n * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\\n * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\\n * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\\n *\\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\\n * ({_hashTypedDataV4}).\\n *\\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\\n * the chain id to protect against replay attacks on an eventual fork of the chain.\\n *\\n * NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method\\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\\n *\\n * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\\n * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the\\n * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\\n *\\n * @custom:oz-upgrades-unsafe-allow state-variable-immutable\\n */\\nabstract contract EIP712 is IERC5267 {\\n    using ShortStrings for *;\\n\\n    bytes32 private constant TYPE_HASH =\\n        keccak256(\\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\");\\n\\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\\n    // invalidate the cached domain separator if the chain id changes.\\n    bytes32 private immutable _cachedDomainSeparator;\\n    uint256 private immutable _cachedChainId;\\n    address private immutable _cachedThis;\\n\\n    bytes32 private immutable _hashedName;\\n    bytes32 private immutable _hashedVersion;\\n\\n    ShortString private immutable _name;\\n    ShortString private immutable _version;\\n    string private _nameFallback;\\n    string private _versionFallback;\\n\\n    /**\\n     * @dev Initializes the domain separator and parameter caches.\\n     *\\n     * The meaning of `name` and `version` is specified in\\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\\n     *\\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\\n     * - `version`: the current major version of the signing domain.\\n     *\\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\\n     * contract upgrade].\\n     */\\n    constructor(string memory name, string memory version) {\\n        _name = name.toShortStringWithFallback(_nameFallback);\\n        _version = version.toShortStringWithFallback(_versionFallback);\\n        _hashedName = keccak256(bytes(name));\\n        _hashedVersion = keccak256(bytes(version));\\n\\n        _cachedChainId = block.chainid;\\n        _cachedDomainSeparator = _buildDomainSeparator();\\n        _cachedThis = address(this);\\n    }\\n\\n    /**\\n     * @dev Returns the domain separator for the current chain.\\n     */\\n    function _domainSeparatorV4() internal view returns (bytes32) {\\n        if (address(this) == _cachedThis && block.chainid == _cachedChainId) {\\n            return _cachedDomainSeparator;\\n        } else {\\n            return _buildDomainSeparator();\\n        }\\n    }\\n\\n    function _buildDomainSeparator() private view returns (bytes32) {\\n        return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));\\n    }\\n\\n    /**\\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\\n     * function returns the hash of the fully encoded EIP712 message for this domain.\\n     *\\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\\n     *\\n     * ```solidity\\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\\n     *     keccak256(\\\"Mail(address to,string contents)\\\"),\\n     *     mailTo,\\n     *     keccak256(bytes(mailContents))\\n     * )));\\n     * address signer = ECDSA.recover(digest, signature);\\n     * ```\\n     */\\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\\n        return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n\\n    /**\\n     * @dev See {IERC-5267}.\\n     */\\n    function eip712Domain()\\n        public\\n        view\\n        virtual\\n        returns (\\n            bytes1 fields,\\n            string memory name,\\n            string memory version,\\n            uint256 chainId,\\n            address verifyingContract,\\n            bytes32 salt,\\n            uint256[] memory extensions\\n        )\\n    {\\n        return (\\n            hex\\\"0f\\\", // 01111\\n            _EIP712Name(),\\n            _EIP712Version(),\\n            block.chainid,\\n            address(this),\\n            bytes32(0),\\n            new uint256[](0)\\n        );\\n    }\\n\\n    /**\\n     * @dev The name parameter for the EIP712 domain.\\n     *\\n     * NOTE: By default this function reads _name which is an immutable value.\\n     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function _EIP712Name() internal view returns (string memory) {\\n        return _name.toStringWithFallback(_nameFallback);\\n    }\\n\\n    /**\\n     * @dev The version parameter for the EIP712 domain.\\n     *\\n     * NOTE: By default this function reads _version which is an immutable value.\\n     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function _EIP712Version() internal view returns (string memory) {\\n        return _version.toStringWithFallback(_versionFallback);\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)\\n\\npragma solidity ^0.8.20;\\n\\nimport {Strings} from \\\"../Strings.sol\\\";\\n\\n/**\\n * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\\n *\\n * The library provides methods for generating a hash of a message that conforms to the\\n * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\\n * specifications.\\n */\\nlibrary MessageHashUtils {\\n    /**\\n     * @dev Returns the keccak256 digest of an EIP-191 signed data with version\\n     * `0x45` (`personal_sign` messages).\\n     *\\n     * The digest is calculated by prefixing a bytes32 `messageHash` with\\n     * `\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\"` and hashing the result. It corresponds with the\\n     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\\n     *\\n     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\\n     * keccak256, although any bytes32 value can be safely used because the final digest will\\n     * be re-hashed.\\n     *\\n     * See {ECDSA-recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            mstore(0x00, \\\"\\\\x19Ethereum Signed Message:\\\\n32\\\") // 32 is the bytes-length of messageHash\\n            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix\\n            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the keccak256 digest of an EIP-191 signed data with version\\n     * `0x45` (`personal_sign` messages).\\n     *\\n     * The digest is calculated by prefixing an arbitrary `message` with\\n     * `\\\"\\\\x19Ethereum Signed Message:\\\\n\\\" + len(message)` and hashing the result. It corresponds with the\\n     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\\n     *\\n     * See {ECDSA-recover}.\\n     */\\n    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {\\n        return\\n            keccak256(bytes.concat(\\\"\\\\x19Ethereum Signed Message:\\\\n\\\", bytes(Strings.toString(message.length)), message));\\n    }\\n\\n    /**\\n     * @dev Returns the keccak256 digest of an EIP-191 signed data with version\\n     * `0x00` (data with intended validator).\\n     *\\n     * The digest is calculated by prefixing an arbitrary `data` with `\\\"\\\\x19\\\\x00\\\"` and the intended\\n     * `validator` address. Then hashing the result.\\n     *\\n     * See {ECDSA-recover}.\\n     */\\n    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(hex\\\"19_00\\\", validator, data));\\n    }\\n\\n    /**\\n     * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`).\\n     *\\n     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\\n     * `\\\\x19\\\\x01` and hashing the result. It corresponds to the hash signed by the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\\n     *\\n     * See {ECDSA-recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {\\n        /// @solidity memory-safe-assembly\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, hex\\\"19_01\\\")\\n            mstore(add(ptr, 0x02), domainSeparator)\\n            mstore(add(ptr, 0x22), structHash)\\n            digest := keccak256(ptr, 0x42)\\n        }\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/math/Math.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Standard math utilities missing in the Solidity language.\\n */\\nlibrary Math {\\n    /**\\n     * @dev Muldiv operation overflow.\\n     */\\n    error MathOverflowedMulDiv();\\n\\n    enum Rounding {\\n        Floor, // Toward negative infinity\\n        Ceil, // Toward positive infinity\\n        Trunc, // Toward zero\\n        Expand // Away from zero\\n    }\\n\\n    /**\\n     * @dev Returns the addition of two unsigned integers, with an overflow flag.\\n     */\\n    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            uint256 c = a + b;\\n            if (c < a) return (false, 0);\\n            return (true, c);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.\\n     */\\n    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b > a) return (false, 0);\\n            return (true, a - b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.\\n     */\\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\\n            // benefit is lost if 'b' is also tested.\\n            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\\n            if (a == 0) return (true, 0);\\n            uint256 c = a * b;\\n            if (c / a != b) return (false, 0);\\n            return (true, c);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the division of two unsigned integers, with a division by zero flag.\\n     */\\n    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b == 0) return (false, 0);\\n            return (true, a / b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.\\n     */\\n    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b == 0) return (false, 0);\\n            return (true, a % b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the largest of two numbers.\\n     */\\n    function max(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a > b ? a : b;\\n    }\\n\\n    /**\\n     * @dev Returns the smallest of two numbers.\\n     */\\n    function min(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a < b ? a : b;\\n    }\\n\\n    /**\\n     * @dev Returns the average of two numbers. The result is rounded towards\\n     * zero.\\n     */\\n    function average(uint256 a, uint256 b) internal pure returns (uint256) {\\n        // (a + b) / 2 can overflow.\\n        return (a & b) + (a ^ b) / 2;\\n    }\\n\\n    /**\\n     * @dev Returns the ceiling of the division of two numbers.\\n     *\\n     * This differs from standard division with `/` in that it rounds towards infinity instead\\n     * of rounding towards zero.\\n     */\\n    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\\n        if (b == 0) {\\n            // Guarantee the same behavior as in a regular Solidity division.\\n            return a / b;\\n        }\\n\\n        // (a + b - 1) / b can overflow on addition, so we distribute.\\n        return a == 0 ? 0 : (a - 1) / b + 1;\\n    }\\n\\n    /**\\n     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\\n     * denominator == 0.\\n     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\\n     * Uniswap Labs also under MIT license.\\n     */\\n    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\\n        unchecked {\\n            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\\n            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\\n            // variables such that product = prod1 * 2^256 + prod0.\\n            uint256 prod0 = x * y; // Least significant 256 bits of the product\\n            uint256 prod1; // Most significant 256 bits of the product\\n            assembly {\\n                let mm := mulmod(x, y, not(0))\\n                prod1 := sub(sub(mm, prod0), lt(mm, prod0))\\n            }\\n\\n            // Handle non-overflow cases, 256 by 256 division.\\n            if (prod1 == 0) {\\n                // Solidity will revert if denominator == 0, unlike the div opcode on its own.\\n                // The surrounding unchecked block does not change this fact.\\n                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\\n                return prod0 / denominator;\\n            }\\n\\n            // Make sure the result is less than 2^256. Also prevents denominator == 0.\\n            if (denominator <= prod1) {\\n                revert MathOverflowedMulDiv();\\n            }\\n\\n            ///////////////////////////////////////////////\\n            // 512 by 256 division.\\n            ///////////////////////////////////////////////\\n\\n            // Make division exact by subtracting the remainder from [prod1 prod0].\\n            uint256 remainder;\\n            assembly {\\n                // Compute remainder using mulmod.\\n                remainder := mulmod(x, y, denominator)\\n\\n                // Subtract 256 bit number from 512 bit number.\\n                prod1 := sub(prod1, gt(remainder, prod0))\\n                prod0 := sub(prod0, remainder)\\n            }\\n\\n            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.\\n            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.\\n\\n            uint256 twos = denominator & (0 - denominator);\\n            assembly {\\n                // Divide denominator by twos.\\n                denominator := div(denominator, twos)\\n\\n                // Divide [prod1 prod0] by twos.\\n                prod0 := div(prod0, twos)\\n\\n                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\\n                twos := add(div(sub(0, twos), twos), 1)\\n            }\\n\\n            // Shift in bits from prod1 into prod0.\\n            prod0 |= prod1 * twos;\\n\\n            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\\n            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\\n            // four bits. That is, denominator * inv = 1 mod 2^4.\\n            uint256 inverse = (3 * denominator) ^ 2;\\n\\n            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also\\n            // works in modular arithmetic, doubling the correct bits in each step.\\n            inverse *= 2 - denominator * inverse; // inverse mod 2^8\\n            inverse *= 2 - denominator * inverse; // inverse mod 2^16\\n            inverse *= 2 - denominator * inverse; // inverse mod 2^32\\n            inverse *= 2 - denominator * inverse; // inverse mod 2^64\\n            inverse *= 2 - denominator * inverse; // inverse mod 2^128\\n            inverse *= 2 - denominator * inverse; // inverse mod 2^256\\n\\n            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\\n            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\\n            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\\n            // is no longer required.\\n            result = prod0 * inverse;\\n            return result;\\n        }\\n    }\\n\\n    /**\\n     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\\n     */\\n    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\\n        uint256 result = mulDiv(x, y, denominator);\\n        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {\\n            result += 1;\\n        }\\n        return result;\\n    }\\n\\n    /**\\n     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\\n     * towards zero.\\n     *\\n     * Inspired by Henry S. Warren, Jr.'s \\\"Hacker's Delight\\\" (Chapter 11).\\n     */\\n    function sqrt(uint256 a) internal pure returns (uint256) {\\n        if (a == 0) {\\n            return 0;\\n        }\\n\\n        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\\n        //\\n        // We know that the \\\"msb\\\" (most significant bit) of our target number `a` is a power of 2 such that we have\\n        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\\n        //\\n        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\\n        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\\n        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\\n        //\\n        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\\n        uint256 result = 1 << (log2(a) >> 1);\\n\\n        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\\n        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\\n        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\\n        // into the expected uint128 result.\\n        unchecked {\\n            result = (result + a / result) >> 1;\\n            result = (result + a / result) >> 1;\\n            result = (result + a / result) >> 1;\\n            result = (result + a / result) >> 1;\\n            result = (result + a / result) >> 1;\\n            result = (result + a / result) >> 1;\\n            result = (result + a / result) >> 1;\\n            return min(result, a / result);\\n        }\\n    }\\n\\n    /**\\n     * @notice Calculates sqrt(a), following the selected rounding direction.\\n     */\\n    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\\n        unchecked {\\n            uint256 result = sqrt(a);\\n            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);\\n        }\\n    }\\n\\n    /**\\n     * @dev Return the log in base 2 of a positive value rounded towards zero.\\n     * Returns 0 if given 0.\\n     */\\n    function log2(uint256 value) internal pure returns (uint256) {\\n        uint256 result = 0;\\n        unchecked {\\n            if (value >> 128 > 0) {\\n                value >>= 128;\\n                result += 128;\\n            }\\n            if (value >> 64 > 0) {\\n                value >>= 64;\\n                result += 64;\\n            }\\n            if (value >> 32 > 0) {\\n                value >>= 32;\\n                result += 32;\\n            }\\n            if (value >> 16 > 0) {\\n                value >>= 16;\\n                result += 16;\\n            }\\n            if (value >> 8 > 0) {\\n                value >>= 8;\\n                result += 8;\\n            }\\n            if (value >> 4 > 0) {\\n                value >>= 4;\\n                result += 4;\\n            }\\n            if (value >> 2 > 0) {\\n                value >>= 2;\\n                result += 2;\\n            }\\n            if (value >> 1 > 0) {\\n                result += 1;\\n            }\\n        }\\n        return result;\\n    }\\n\\n    /**\\n     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\\n     * Returns 0 if given 0.\\n     */\\n    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\\n        unchecked {\\n            uint256 result = log2(value);\\n            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);\\n        }\\n    }\\n\\n    /**\\n     * @dev Return the log in base 10 of a positive value rounded towards zero.\\n     * Returns 0 if given 0.\\n     */\\n    function log10(uint256 value) internal pure returns (uint256) {\\n        uint256 result = 0;\\n        unchecked {\\n            if (value >= 10 ** 64) {\\n                value /= 10 ** 64;\\n                result += 64;\\n            }\\n            if (value >= 10 ** 32) {\\n                value /= 10 ** 32;\\n                result += 32;\\n            }\\n            if (value >= 10 ** 16) {\\n                value /= 10 ** 16;\\n                result += 16;\\n            }\\n            if (value >= 10 ** 8) {\\n                value /= 10 ** 8;\\n                result += 8;\\n            }\\n            if (value >= 10 ** 4) {\\n                value /= 10 ** 4;\\n                result += 4;\\n            }\\n            if (value >= 10 ** 2) {\\n                value /= 10 ** 2;\\n                result += 2;\\n            }\\n            if (value >= 10 ** 1) {\\n                result += 1;\\n            }\\n        }\\n        return result;\\n    }\\n\\n    /**\\n     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\\n     * Returns 0 if given 0.\\n     */\\n    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\\n        unchecked {\\n            uint256 result = log10(value);\\n            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);\\n        }\\n    }\\n\\n    /**\\n     * @dev Return the log in base 256 of a positive value rounded towards zero.\\n     * Returns 0 if given 0.\\n     *\\n     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\\n     */\\n    function log256(uint256 value) internal pure returns (uint256) {\\n        uint256 result = 0;\\n        unchecked {\\n            if (value >> 128 > 0) {\\n                value >>= 128;\\n                result += 16;\\n            }\\n            if (value >> 64 > 0) {\\n                value >>= 64;\\n                result += 8;\\n            }\\n            if (value >> 32 > 0) {\\n                value >>= 32;\\n                result += 4;\\n            }\\n            if (value >> 16 > 0) {\\n                value >>= 16;\\n                result += 2;\\n            }\\n            if (value >> 8 > 0) {\\n                result += 1;\\n            }\\n        }\\n        return result;\\n    }\\n\\n    /**\\n     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\\n     * Returns 0 if given 0.\\n     */\\n    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\\n        unchecked {\\n            uint256 result = log256(value);\\n            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.\\n     */\\n    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {\\n        return uint8(rounding) % 2 == 1;\\n    }\\n}\\n\",\"@openzeppelin/contracts/utils/math/SignedMath.sol\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)\\n\\npragma solidity ^0.8.20;\\n\\n/**\\n * @dev Standard signed math utilities missing in the Solidity language.\\n */\\nlibrary SignedMath {\\n    /**\\n     * @dev Returns the largest of two signed numbers.\\n     */\\n    function max(int256 a, int256 b) internal pure returns (int256) {\\n        return a > b ? a : b;\\n    }\\n\\n    /**\\n     * @dev Returns the smallest of two signed numbers.\\n     */\\n    function min(int256 a, int256 b) internal pure returns (int256) {\\n        return a < b ? a : b;\\n    }\\n\\n    /**\\n     * @dev Returns the average of two signed numbers without overflow.\\n     * The result is rounded towards zero.\\n     */\\n    function average(int256 a, int256 b) internal pure returns (int256) {\\n        // Formula from the book \\\"Hacker's Delight\\\"\\n        int256 x = (a & b) + ((a ^ b) >> 1);\\n        return x + (int256(uint256(x) >> 255) & (a ^ b));\\n    }\\n\\n    /**\\n     * @dev Returns the absolute unsigned value of a signed value.\\n     */\\n    function abs(int256 n) internal pure returns (uint256) {\\n        unchecked {\\n            // must be unchecked in order to support `n = type(int256).min`\\n            return uint256(n >= 0 ? n : -n);\\n        }\\n    }\\n}\\n\"}}","abi":"[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_minDelay\",\"type\":\"uint64\"},{\"internalType\":\"uint128\",\"name\":\"_ticketPrice\",\"type\":\"uint128\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"rateBps\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"payout\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Tier[]\",\"name\":\"_tiers\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"tickets\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"bonus\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"price\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Pack[]\",\"name\":\"_packs\",\"type\":\"tuple[]\"},{\"internalType\":\"uint128[]\",\"name\":\"_payoutMax\",\"type\":\"uint128[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"BadPackCount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint128\",\"name\":\"min\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"max\",\"type\":\"uint128\"}],\"name\":\"BadPayoutRange\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"BadTierCount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"given\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"required\",\"type\":\"uint64\"}],\"name\":\"DelayTooShort\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"DuplicateId\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"EnforcedPause\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ExpectedPause\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"activeFrom\",\"type\":\"uint64\"}],\"name\":\"NotYetActive\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NothingQueued\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tiers\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxes\",\"type\":\"uint256\"}],\"name\":\"PayoutMaxLengthMismatch\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"RatesMustSumTo100\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ZeroTicketPrice\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"configHash\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"ticketPrice\",\"type\":\"uint128\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"rateBps\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"payout\",\"type\":\"uint128\"}],\"indexed\":false,\"internalType\":\"struct GameConfig.Tier[]\",\"name\":\"tiers\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"tickets\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"bonus\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"price\",\"type\":\"uint128\"}],\"indexed\":false,\"internalType\":\"struct GameConfig.Pack[]\",\"name\":\"packs\",\"type\":\"tuple[]\"}],\"name\":\"ConfigAppliedNow\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"configHash\",\"type\":\"bytes32\"}],\"name\":\"ConfigPromoted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"configHash\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"activeFrom\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"ticketPrice\",\"type\":\"uint128\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"rateBps\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"payout\",\"type\":\"uint128\"}],\"indexed\":false,\"internalType\":\"struct GameConfig.Tier[]\",\"name\":\"tiers\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"tickets\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"bonus\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"price\",\"type\":\"uint128\"}],\"indexed\":false,\"internalType\":\"struct GameConfig.Pack[]\",\"name\":\"packs\",\"type\":\"tuple[]\"}],\"name\":\"ConfigQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"configHash\",\"type\":\"bytes32\"}],\"name\":\"QueuedCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BPS\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"MAX_PACKS\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"MAX_TIERS\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"MIN_ALLOWED_DELAY\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"MIN_TIERS\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint128\",\"name\":\"_ticketPrice\",\"type\":\"uint128\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"rateBps\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"payout\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Tier[]\",\"name\":\"_tiers\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"tickets\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"bonus\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"price\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Pack[]\",\"name\":\"_packs\",\"type\":\"tuple[]\"},{\"internalType\":\"uint128[]\",\"name\":\"_payoutMax\",\"type\":\"uint128[]\"}],\"name\":\"applyNow\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cancelQueued\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentAnnounced\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentConfig\",\"outputs\":[{\"components\":[{\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"activeFrom\",\"type\":\"uint64\"},{\"internalType\":\"uint128\",\"name\":\"ticketPrice\",\"type\":\"uint128\"},{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"rateBps\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"payout\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Tier[]\",\"name\":\"tiers\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"tickets\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"bonus\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"price\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Pack[]\",\"name\":\"packs\",\"type\":\"tuple[]\"}],\"internalType\":\"struct GameConfig.Config\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentPayoutMax\",\"outputs\":[{\"internalType\":\"uint128[]\",\"name\":\"\",\"type\":\"uint128[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"expectedValueBps\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"hasQueued\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"houseEdgeBps\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"houseLoses\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"liveWasAnnounced\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minDelay\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"promote\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint128\",\"name\":\"_ticketPrice\",\"type\":\"uint128\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"rateBps\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"payout\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Tier[]\",\"name\":\"_tiers\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"tickets\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"bonus\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"price\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Pack[]\",\"name\":\"_packs\",\"type\":\"tuple[]\"},{\"internalType\":\"uint128[]\",\"name\":\"_payoutMax\",\"type\":\"uint128[]\"},{\"internalType\":\"uint64\",\"name\":\"delay\",\"type\":\"uint64\"}],\"name\":\"queueConfig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"queuedConfig\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"exists\",\"type\":\"bool\"},{\"components\":[{\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"activeFrom\",\"type\":\"uint64\"},{\"internalType\":\"uint128\",\"name\":\"ticketPrice\",\"type\":\"uint128\"},{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"rateBps\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"payout\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Tier[]\",\"name\":\"tiers\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"tickets\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"bonus\",\"type\":\"uint32\"},{\"internalType\":\"uint128\",\"name\":\"price\",\"type\":\"uint128\"}],\"internalType\":\"struct GameConfig.Pack[]\",\"name\":\"packs\",\"type\":\"tuple[]\"}],\"internalType\":\"struct GameConfig.Config\",\"name\":\"cfg\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"queuedPayoutMax\",\"outputs\":[{\"internalType\":\"uint128[]\",\"name\":\"\",\"type\":\"uint128[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"versionCounter\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"}]"},"tokens":[],"summary":{"isContract":true,"isVerified":true,"name":null,"ensName":null,"creator":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","creationTx":null,"publicTags":[],"hasTokens":false,"hasLogs":true,"validatedBlocks":false},"firstLast":{"last":{"hash":"0xa6812344b7a7d5e06c9d6073435bd614ac59313dbe596b2834274db4d5246fdd","timestamp":1788090272,"blockNumber":4927458},"first":{"hash":"0x46066193270de323e064d3fd149f2c4a9309b76905379c42c4f6e912efdbdf9a","timestamp":1787829640,"blockNumber":4797143},"fundedBy":{"address":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","hash":"0xea027cbfcb1940c1ec155928e8a0bec942f4a627bb277c3795b9a7f65d5bcb70"},"complete":true},"tab":"txs","page":1,"offset":25,"scan":{"available":true,"source":"blockscout","ok":true,"message":"OK"},"rows":[{"hash":"0xa6812344b7a7d5e06c9d6073435bd614ac59313dbe596b2834274db4d5246fdd","blockNumber":"4927458","timeStamp":"1788090272","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000157c000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000056570696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c000000000000000000000000000000000000000000000000000000000000000a6c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000f6d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x16f3574a7ff331bc32dda9fb6110f70a58d20db9be1a0ddc3e45231796caef1e","blockNumber":"4892037","timeStamp":"1788019429","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000157c000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000056570696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c000000000000000000000000000000000000000000000000000000000000000f6c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000000196d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x8cb901d8bc53924d72884cd82e4808c15a8572d0bf880a310f7eacedebbc892c","blockNumber":"4891905","timeStamp":"1788019165","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000157c000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000056570696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c000000000000000000000000000000000000000000000000000000000000000f6c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000000196d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x2c7b550ac53d7ca94b9a17f84a62656ebf273ac14989e0a32466af7f1ca61773","blockNumber":"4888500","timeStamp":"1788012355","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000157c000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000056570696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c000000000000000000000000000000000000000000000000000000000000000f6c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x956b8730b251c8100eff0973603fa1b779b08ad0f12f68992fee5fbe9e57bec5","blockNumber":"4883440","timeStamp":"1788002235","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ce40000000000000000000000000000000000000000000000000000000000000002726172650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000000f6c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x0e984ba4d3a5e65405e025aefdd7e7eb39306a194ed4748095d6cbeff409d3c0","blockNumber":"4883292","timeStamp":"1788001939","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000002726172650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014b40000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000000f6c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x2a8c599ecb1b5fc8e4ee071bde42fd909e63bee7df902a86cdd7d64d360dfcad","blockNumber":"4883029","timeStamp":"1788001413","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b540000000000000000000000000000000000000000000000000000000000000002726172650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000000000000000000000000000000000000000000f6c6567656e64617279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0xb3724885ae57eac09828374bae16191fd8c339ba1a1c67259f55d7a004592958","blockNumber":"4882809","timeStamp":"1788000973","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000000000002726172650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a4000000000000000000000000000000000000000000000000000000000000000f6c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025800000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x4f8b5d2fe35813f9c127dd9105377b4ab358a7abc168e3b98ee60c9de4cb2561","blockNumber":"4882671","timeStamp":"1788000697","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000f6c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x9a805e91efdeef902a5505df81b838276a8cb2b1d6e5ee59c16de8fa6d38a306","blockNumber":"4878778","timeStamp":"1787992911","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214676","gasUsed":"169463","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000f6c6567656e64617279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x55e2222e551c063c4725d3ca98e01e109a66f8a214d677594352ff850a63d116","blockNumber":"4878571","timeStamp":"1787992497","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214676","gasUsed":"169463","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac000000000000000000000000000000000000000000000000000000000000000565706963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000000f6c6567656e64617279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x3ad67c335757758fdd45fd75f48c6b2605c3f65ed53809aedc0592743b737776","blockNumber":"4878459","timeStamp":"1787992273","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214676","gasUsed":"169463","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac000000000000000000000000000000000000000000000000000000000000000565706963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000146c6567656e64617279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x38c0a0a03b878d28de01542e164e12ab95a5285724bb794a9815119c41e8332b","blockNumber":"4878394","timeStamp":"1787992143","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214676","gasUsed":"169463","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000000565706963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000146c6567656e64617279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0xe2cc173305e1050c2032be449ae3724373cee52939d6dbda0c31274d2ee632cd","blockNumber":"4878281","timeStamp":"1787991917","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"169453","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac0000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c400000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0xd3e6dc283702b36b205ebe77a1314ec2abfc50b05ef8afff1f3593f2cc6ecd80","blockNumber":"4877790","timeStamp":"1787990935","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214652","gasUsed":"169444","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000002726172650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000146c6567656e64617279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0xa0b7b829eb0a89b4a04a87aa091a08d303211b1c1e5570eb7ac47416dd3ad645","blockNumber":"4877565","timeStamp":"1787990485","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214664","gasUsed":"172616","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000272617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000326d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006470313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x79a0fcef7254bde8cbc879fd205394b671b09754f6b8b57dd76e9eaafc05560f","blockNumber":"4877550","timeStamp":"1787990455","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"33446","gasUsed":"28290","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x79ba5097","methodId":"0x79ba5097","functionName":"acceptOwnership"},{"hash":"0xc55dc480dfe2e8f4eaa2176ba3cdc04ff23411c35aa8a7117fd8216dea0446ac","blockNumber":"4876576","timeStamp":"1787988507","from":"0x53480c987b3c11d7c6d37c2c950647d4b1f24981","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"48186","gasUsed":"47800","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xf2fde38b0000000000000000000000003435d20738487c21f24063a4851ff2c6ba20218b","methodId":"0xf2fde38b","functionName":"transferOwnership"},{"hash":"0x98fe1b0214a5dbacebc5b32e9a6f01efc8b17c72435bd33b2df64f5a981ede3a","blockNumber":"4876565","timeStamp":"1787988485","from":"0x53480c987b3c11d7c6d37c2c950647d4b1f24981","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"30102","gasUsed":"24952","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x3f4ba83a","methodId":"0x3f4ba83a","functionName":"unpause"},{"hash":"0xd9191d073b0822e827acb39c970ab5366b49c7ac9eec24348c42ab3e303b2dd1","blockNumber":"4876562","timeStamp":"1787988479","from":"0x53480c987b3c11d7c6d37c2c950647d4b1f24981","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"47242","gasUsed":"46858","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x8456cb59","methodId":"0x8456cb59","functionName":"pause"},{"hash":"0xd07b8c3b934ce3052354d692abd257ad7ad8b7c726af98f958f8ba09854b8a8b","blockNumber":"4876556","timeStamp":"1787988467","from":"0x53480c987b3c11d7c6d37c2c950647d4b1f24981","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"33446","gasUsed":"28290","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x79ba5097","methodId":"0x79ba5097","functionName":"acceptOwnership"},{"hash":"0xdef71dcafe5ff54edd96c370cc32f27c6169b52a129e205261ca3eb6073363ec","blockNumber":"4876530","timeStamp":"1787988415","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"48186","gasUsed":"47800","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xf2fde38b00000000000000000000000053480c987b3c11d7c6d37c2c950647d4b1f24981","methodId":"0xf2fde38b","functionName":"transferOwnership"},{"hash":"0x42e883421ba9832c85ff64019d01d883c1e670aee1d3d2383363bebc34507f54","blockNumber":"4802106","timeStamp":"1787839566","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214701","gasUsed":"169482","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000147031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000190703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003270313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000008fc000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x0b9f278f5e1c8b141290316e84e7a8b974e9bf53cc2bd0daea1b05723673109e","blockNumber":"4801212","timeStamp":"1787837778","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214701","gasUsed":"169482","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000287031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000190703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003270313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000008fc000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0xde51efd0d3a067475c5781b0b760b37766a5e0897d24492b833375055e87e972","blockNumber":"4800531","timeStamp":"1787836416","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"30102","gasUsed":"24952","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x3f4ba83a","methodId":"0x3f4ba83a","functionName":"unpause"},{"hash":"0xb57d22590225f246b1f4d54e8d037d7e90a7672ff23b10849ed5b6fe643b2e0d","blockNumber":"4800526","timeStamp":"1787836406","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"47242","gasUsed":"46858","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x8456cb59","methodId":"0x8456cb59","functionName":"pause"},{"hash":"0xbc6e21cf5040b1d81ef4c698a49a4912cb21b7709d813c7bb8fa0b251e187963","blockNumber":"4798496","timeStamp":"1787832346","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214713","gasUsed":"169492","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000287031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000190703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000032070313030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000008fc000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0xb567d2bd480f55ac9b7695dc00b1c617f8f134b01355ed60ff4f042823a9ec20","blockNumber":"4798472","timeStamp":"1787832298","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214713","gasUsed":"169492","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000287031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000190703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000079e7031303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000f6e000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0xec0d379ee30c37b6dbb653f5083642fd20eaf4a9ef98913e963df0086efb2254","blockNumber":"4798463","timeStamp":"1787832280","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"217547","gasUsed":"171741","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000287031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000190703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000079e7031303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000f6e000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x7ac0bf8c298d28b65ad0f6cfba94972ae4cc000057a0aef9365ed2e764e71f3c","blockNumber":"4798448","timeStamp":"1787832250","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"234938","gasUsed":"185544","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000287031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000181703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000079e7031303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000f6e000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x9f952fe56770dc203f4085c05f59c174a4437ee5be132432e43cad4d250ca11d","blockNumber":"4798436","timeStamp":"1787832226","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214713","gasUsed":"169492","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000287031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000181703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000079e7031303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000f6e000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0xdb8366bde87c4db6a402ed23a03b01fd7c1026a82da1879afb463c939d3266cd","blockNumber":"4798387","timeStamp":"1787832128","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"214713","gasUsed":"169492","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x78b5608f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000001726172650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000287031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000181703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000079e7031303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000f6e000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x78b5608f","functionName":"applyNow"},{"hash":"0x1c6ae241debf2c657a3720a7d1084986b990f55b4faf9b337912c3e6bd20a7c6","blockNumber":"4798379","timeStamp":"1787832112","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"30102","gasUsed":"24952","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x3f4ba83a","methodId":"0x3f4ba83a","functionName":"unpause"},{"hash":"0xea027cbfcb1940c1ec155928e8a0bec942f4a627bb277c3795b9a7f65d5bcb70","blockNumber":"4798348","timeStamp":"1787832050","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","contractAddress":"","value":"0","gas":"47242","gasUsed":"46858","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x8456cb59","methodId":"0x8456cb59","functionName":"pause"},{"hash":"0x46066193270de323e064d3fd149f2c4a9309b76905379c42c4f6e912efdbdf9a","blockNumber":"4797143","timeStamp":"1787829640","from":"0x75c2a16767d2b86ed176d271d7cfc1acfe32635e","to":"","contractAddress":"0x756b535550d89d6e9f3dcfd384af5181122b2f81","value":"0","gas":"3127674","gasUsed":"3101889","gasPrice":"4840405705706","isError":"0","txreceipt_status":"1","input":"0x60a060405234801561001057600080fd5b506040516138fa3803806138fa83398101604081905261002f91610ad0565b856001600160a01b03811661005f57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61006881610395565b506001805460ff60a01b19169055610e106001600160401b03861610156100b5576040516330ee116760e01b81526001600160401b0386166004820152610e106024820152604401610056565b6001600160401b0385166080526100ce848484846103b1565b600c8054610100600160481b031916610100179055600480546001600160801b03808716600160801b02426001600160401b031668010000000000000000026001600160801b0319909316929092176001171617905560005b83518110156101b057600460020184828151811061014757610147610ba5565b60209081029190910181015182546001818101855560009485529383902082516002909202019081559181015191830180546040909201516001600160801b0316640100000000026001600160a01b031990921663ffffffff9093169290921717905501610127565b5060005b82518110156102625760046003018382815181106101d4576101d4610ba5565b602090810291909101810151825460018181018555600094855293839020825160029092020190815591810151918301805460408301516060909301516001600160801b03166801000000000000000002600160401b600160c01b031963ffffffff948516640100000000026001600160401b031990931694909516939093171792909216179055016101b4565b5060005b81518110156102d557600282828151811061028357610283610ba5565b602090810291909101810151825460018181018555600094855292909320600284040180546001600160801b039283166010958516959095026101000a94850292909402199093161790915501610266565b506102e4600185858585610789565b6005819055600c805460ff60481b191669010000000000000000001790556004546040516001917f0e6c3b124eb0a5348427abe68a5b10d436c540beef680fd876b84344fcdd565791610353916001600160401b03680100000000000000009091041690899089908990610c8b565b60405180910390a36005546040516001907f782c7a09540733eeb30341e1e3458ab5a92af275b909dd940c795dc6a729472590600090a3505050505050610daf565b600180546001600160a01b03191690556103ae816107c9565b50565b82518151146103e0578251815160405163e76077cb60e01b815260048101929092526024820152604401610056565b60005b83518110156104ff578181815181106103fe576103fe610ba5565b60200260200101516001600160801b0316600014158015610466575083818151811061042c5761042c610ba5565b6020026020010151604001516001600160801b031682828151811061045357610453610ba5565b60200260200101516001600160801b0316105b156104f75783818151811061047d5761047d610ba5565b60200260200101516000015184828151811061049b5761049b610ba5565b6020026020010151604001518383815181106104b9576104b9610ba5565b6020026020010151604051631c543e2160e11b8152600401610056939291909283526001600160801b03918216602084015216604082015260600190565b6001016103e3565b5082516002118061051157508251600c105b1561052f5760405163528ef80f60e11b815260040160405180910390fd5b8151600c101561055257604051630558f5f160e51b815260040160405180910390fd5b836001600160801b031660000361057c5760405163133d566f60e11b815260040160405180910390fd5b6000805b845181101561065f5784818151811061059b5761059b610ba5565b60200260200101516020015163ffffffff16826105b89190610cdb565b915060006105c7826001610cdb565b90505b8551811015610656578581815181106105e5576105e5610ba5565b60200260200101516000015186838151811061060357610603610ba5565b6020026020010151600001510361064e5785828151811061062657610626610ba5565b6020026020010151600001516040516345faf99160e01b815260040161005691815260200190565b6001016105ca565b50600101610580565b506127108114610682576040516312118dab60e11b815260040160405180910390fd5b60005b8351811015610781578381815181106106a0576106a0610ba5565b6020026020010151606001516001600160801b0316600014806106e657508381815181106106d0576106d0610ba5565b60200260200101516020015163ffffffff166000145b156107045760405163133d566f60e11b815260040160405180910390fd5b6000610711826001610cdb565b90505b84518110156107785784818151811061072f5761072f610ba5565b60200260200101516000015185838151811061074d5761074d610ba5565b602002602001015160000151036107705784828151811061062657610626610ba5565b600101610714565b50600101610685565b505050505050565b6000463087878787876040516020016107a89796959493929190610d02565b60405160208183030381529060405280519060200120905095945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160401b038116811461083057600080fd5b919050565b80516001600160801b038116811461083057600080fd5b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b03811182821017156108845761088461084c565b60405290565b604051608081016001600160401b03811182821017156108845761088461084c565b604051601f8201601f191681016001600160401b03811182821017156108d4576108d461084c565b604052919050565b60006001600160401b038211156108f5576108f561084c565b5060051b60200190565b805163ffffffff8116811461083057600080fd5b600082601f83011261092457600080fd5b8151610937610932826108dc565b6108ac565b8082825260208201915060206060840286010192508583111561095957600080fd5b602085015b838110156109b4576060818803121561097657600080fd5b61097e610862565b8151815261098e602083016108ff565b602082015261099f60408301610835565b6040820152835260209092019160600161095e565b5095945050505050565b600082601f8301126109cf57600080fd5b81516109dd610932826108dc565b8082825260208201915060208360071b8601019250858311156109ff57600080fd5b602085015b838110156109b45760808188031215610a1c57600080fd5b610a2461088a565b81518152610a34602083016108ff565b6020820152610a45604083016108ff565b6040820152610a5660608301610835565b60608201528352602090920191608001610a04565b600082601f830112610a7c57600080fd5b8151610a8a610932826108dc565b8082825260208201915060208360051b860101925085831115610aac57600080fd5b602085015b838110156109b457610ac281610835565b835260209283019201610ab1565b60008060008060008060c08789031215610ae957600080fd5b86516001600160a01b0381168114610b0057600080fd5b9550610b0e60208801610819565b9450610b1c60408801610835565b60608801519094506001600160401b03811115610b3857600080fd5b610b4489828a01610913565b608089015190945090506001600160401b03811115610b6257600080fd5b610b6e89828a016109be565b60a089015190935090506001600160401b03811115610b8c57600080fd5b610b9889828a01610a6b565b9150509295509295509295565b634e487b7160e01b600052603260045260246000fd5b600081518084526020840193506020830160005b82811015610c155781518051875260208082015163ffffffff16818901526040918201516001600160801b03169188019190915260609096019590910190600101610bcf565b5093949350505050565b600081518084526020840193506020830160005b82811015610c155781518051875263ffffffff602082015116602088015263ffffffff604082015116604088015260018060801b03606082015116606088015250608086019550602082019150600181019050610c33565b6001600160401b03851681526001600160801b0384166020820152608060408201819052600090610cbe90830185610bbb565b8281036060840152610cd08185610c1f565b979650505050505050565b80820180821115610cfc57634e487b7160e01b600052601160045260246000fd5b92915050565b8781526001600160a01b03871660208201526001600160401b03861660408201526001600160801b038516606082015260e060808201819052600090610d4a90830186610bbb565b82810360a0840152610d5c8186610c1f565b83810360c08501528451808252602080870193509091019060005b81811015610d9e5783516001600160801b0316835260209384019390920191600101610d77565b50909b9a5050505050505050505050565b608051612b22610dd86000396000818161034901528181610ec70152610f1e0152612b226000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c8063715018a611610104578063b24986f5116100a2578063dd6d30c111610071578063dd6d30c1146103a1578063e30c3978146103b9578063f2fde38b146103ca578063f934f773146103dd57600080fd5b8063b24986f514610331578063c63c4e9b14610344578063cae5880714610383578063d398d7221461039857600080fd5b806379ba5097116100de57806379ba5097146102f45780638456cb59146102fc578063890e4956146103045780638da5cb5b1461030c57600080fd5b8063715018a6146102d157806378b5608f146102d957806379585629146102ec57600080fd5b806326d254111161017c5780635164c8db1161014b5780635164c8db146102a35780635514734a146101f95780635c975abb146102b75780636a445287146102c957600080fd5b806326d25411146102765780632e8a17161461028b5780633f4ba83a1461029357806351417ea31461029b57600080fd5b806313dc01dc116101b857806313dc01dc146102305780631c4dbb351461023a5780631d3c360314610250578063249d39e91461025857600080fd5b8062998421146101de57806307c3d4af146101f95780630b9554ac14610213575b600080fd5b6101e66103e5565b6040519081526020015b60405180910390f35b610201600c81565b60405160ff90911681526020016101f0565b600c546102209060ff1681565b60405190151581526020016101f0565b61023861046b565b005b6102426104e5565b6040516101f0929190612264565b610201600281565b61026161271081565b60405163ffffffff90911681526020016101f0565b61027e6106bf565b6040516101f091906122c2565b6101e6610749565b61023861075c565b61027e61076c565b600c5461022090600160481b900460ff1681565b600154600160a01b900460ff16610220565b610238610854565b610238610923565b6102386102e73660046123c4565b610935565b610220610de6565b610238610e29565b610238610e6d565b610220610e7d565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101f0565b61023861033f36600461247a565b610ebd565b61036b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160401b0390911681526020016101f0565b61038b611394565b6040516101f0919061254f565b61036b610e1081565b600c5461036b9061010090046001600160401b031681565b6001546001600160a01b0316610319565b6102386103d8366004612562565b611626565b6101e6611697565b6000806103f0611394565b90506000610409826080015161040461076c565b6116ba565b9050600061271063ffffffff1683604001516001600160801b031661042e91906125a1565b9050808210610441576000935050505090565b8061271061044f84836125b8565b61045991906125a1565b61046391906125cb565b935050505090565b600c5460ff1661048e576040516301440ac160e21b815260040160405180910390fd5b600854600160401b90046001600160401b03164210156104db57600854604051637ab20abd60e01b8152600160401b9091046001600160401b031660048201526024015b60405180910390fd5b6104e3611766565b565b6040805160c08101825260008082526020820181905291810182905260608082018390526080820181905260a0820152600c5460ff1615806105395750600854600160401b90046001600160401b03164210155b1561054657600091509091565b6040805160c081018252600880546001600160401b038082168452600160401b820416602080850191909152600160801b9091046001600160801b0316838501526009546060840152600a80548551818402810184019096528086526001959394938593608086019391929060009084015b8282101561061557600084815260209081902060408051606081018252600286029092018054835260019081015463ffffffff811684860152600160201b90046001600160801b03169183019190915290835290920191016105b8565b50505050815260200160038201805480602002602001604051908101604052809291908181526020016000905b828210156106ae57600084815260209081902060408051608081018252600286029092018054835260019081015463ffffffff80821685870152600160201b82041692840192909252600160401b9091046001600160801b031660608301529083529092019101610642565b505050915250929590945092505050565b6060600380548060200260200160405190810160405280929190818152602001828054801561073f57602002820191906000526020600020906000905b82829054906101000a90046001600160801b03166001600160801b031681526020019060100190602082600f010492830192600103820291508084116106fc5790505b5050505050905090565b6000610753611394565b60600151905090565b610764611a50565b6104e3611a7d565b600c5460609060ff1680156107935750600854600160401b90046001600160401b03164210155b156107f657600380548060200260200160405190810160405280929190818152602001828054801561073f57600091825260209182902080546001600160801b031684529082028301929091601091018084116106fc5790505050505050905090565b600280548060200260200160405190810160405280929190818152602001828054801561073f57600091825260209182902080546001600160801b031684529082028301929091601091018084116106fc5790505050505050905090565b61085c611a50565b600c5460ff1661087f576040516301440ac160e21b815260040160405180910390fd5b600854600160401b90046001600160401b031642106108c657600854604051637ab20abd60e01b8152600160401b9091046001600160401b031660048201526024016104d2565b6009546008546040516001600160401b03909116907f57a7fc58aa9c4a503be912d7d217b431f3c08e6b9099c24b8a4df9be0fcdec1790600090a3600c805460ff19169055610917600a6000612042565b6104e3600b6000612063565b61092b611a50565b6104e36000611ad2565b61093d611a50565b610a20878787808060200260200160405190810160405280939291908181526020016000905b8282101561098f57610980606083028601368190038101906125ff565b81526020019060010190610963565b50505050508686808060200260200160405190810160405280939291908181526020016000905b828210156109e2576109d360808302860136819003810190612680565b815260200190600101906109b6565b5050505050858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611aeb92505050565b600c5460ff1615610a88576009546008546040516001600160401b03909116907f57a7fc58aa9c4a503be912d7d217b431f3c08e6b9099c24b8a4df9be0fcdec1790600090a3600c805460ff19169055610a7c600a6000612042565b610a88600b6000612063565b6000600c600181819054906101000a90046001600160401b0316610aab90612717565b91906101000a8154816001600160401b0302191690836001600160401b031602179055905060046002016000610ae19190612042565b610aed60076000612063565b610af960026000612084565b600480546001600160801b03808b16600160801b02426001600160401b03908116600160401b026001600160801b031990941690861617929092171617905560005b86811015610b8f576006888883818110610b5757610b57612742565b835460018101855560009485526020909420606090910292909201926002029091019050610b858282612758565b5050600101610b3b565b5060005b84811015610be7576007868683818110610baf57610baf612742565b835460018101855560009485526020909420608090910292909201926002029091019050610bdd82826127cc565b5050600101610b93565b5060005b82811015610c63576002848483818110610c0757610c07612742565b9050602002016020810190610c1c919061285a565b81546001808201845560009384526020909320600282040180549184166010026101000a6001600160801b0381810219909316939092169190910291909117905501610beb565b50610d4881898989808060200260200160405190810160405280939291908181526020016000905b82821015610cb757610ca8606083028601368190038101906125ff565b81526020019060010190610c8b565b50505050508888808060200260200160405190810160405280939291908181526020016000905b82821015610d0a57610cfb60808302860136819003810190612680565b81526020019060010190610cde565b5050505050878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611ec392505050565b6005819055600c805460ff60481b191690556040516001600160401b038316907f049414941ea3437bf25bd914b9e0a0e502b9e0495ecda01e7c8e423626616fee90610d9d908c908c908c908c908c90612956565b60405180910390a36005546040516001600160401b038316907f782c7a09540733eeb30341e1e3458ab5a92af275b909dd940c795dc6a729472590600090a35050505050505050565b600c5460009060ff168015610e0d5750600854600160401b90046001600160401b03164210155b15610e185750600190565b50600c54600160481b900460ff1690565b60015433906001600160a01b03168114610e615760405163118cdaa760e01b81526001600160a01b03821660048201526024016104d2565b610e6a81611ad2565b50565b610e75611a50565b6104e3611f03565b600080610e88611394565b6040810151909150610ea690612710906001600160801b03166125a1565b610eb6826080015161040461076c565b1191505090565b610ec5611a50565b7f00000000000000000000000000000000000000000000000000000000000000006001600160401b0316816001600160401b03161015610f4b576040516330ee116760e01b81526001600160401b0380831660048301527f00000000000000000000000000000000000000000000000000000000000000001660248201526044016104d2565b61102e888888808060200260200160405190810160405280939291908181526020016000905b82821015610f9d57610f8e606083028601368190038101906125ff565b81526020019060010190610f71565b50505050508787808060200260200160405190810160405280939291908181526020016000905b82821015610ff057610fe160808302860136819003810190612680565b81526020019060010190610fc4565b5050505050868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611aeb92505050565b600c5460ff1680156110525750600854600160401b90046001600160401b03164210155b1561105f5761105f611766565b6000600c600181819054906101000a90046001600160401b031661108290612717565b91906101000a8154816001600160401b0302191690836001600160401b0316021790559050600082426110b59190612998565b90506110c3600a6000612042565b6110cf600b6000612063565b6110db60036000612084565b600880546001600160801b03808d16600160801b026001600160401b03858116600160401b026001600160801b031990941690871617929092171617905560005b8881101561117057600a8a8a8381811061113857611138612742565b8354600181018555600094855260209094206060909102929092019260020290910190506111668282612758565b505060010161111c565b5060005b868110156111c857600b88888381811061119057611190612742565b8354600181018555600094855260209094206080909102929092019260020290910190506111be82826127cc565b5050600101611174565b5060005b848110156112445760038686838181106111e8576111e8612742565b90506020020160208101906111fd919061285a565b81546001808201845560009384526020909320600282040180549184166010026101000a6001600160801b03818102199093169390921691909102919091179055016111cc565b50611329828b8b8b808060200260200160405190810160405280939291908181526020016000905b8282101561129857611289606083028601368190038101906125ff565b8152602001906001019061126c565b50505050508a8a808060200260200160405190810160405280939291908181526020016000905b828210156112eb576112dc60808302860136819003810190612680565b815260200190600101906112bf565b5050505050898980806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611ec392505050565b6009819055600c805460ff191660011790556040516001600160401b038416907f0e6c3b124eb0a5348427abe68a5b10d436c540beef680fd876b84344fcdd5657906113809085908f908f908f908f908f906129b7565b60405180910390a350505050505050505050565b6040805160c0810182526000808252602082018190529181018290526060808201929092526080810182905260a0810191909152600c5460ff1680156113ec5750600854600160401b90046001600160401b03164210155b15611560576040805160c081018252600880546001600160401b038082168452600160401b820416602080850191909152600160801b9091046001600160801b0316838501526009546060840152600a80548551818402810184019096528086529394929360808601939260009084015b828210156114ba57600084815260209081902060408051606081018252600286029092018054835260019081015463ffffffff811684860152600160201b90046001600160801b031691830191909152908352909201910161145d565b50505050815260200160038201805480602002602001604051908101604052809291908181526020016000905b8282101561155357600084815260209081902060408051608081018252600286029092018054835260019081015463ffffffff80821685870152600160201b82041692840192909252600160401b9091046001600160801b0316606083015290835290920191016114e7565b5050505081525050905090565b6040805160c081018252600480546001600160401b038082168452600160401b820416602080850191909152600160801b9091046001600160801b03168385015260055460608401526006805485518184028101840190965280865293949293608086019392600090840182156114ba57600084815260209081902060408051606081018252600286029092018054835260019081015463ffffffff811684860152600160201b90046001600160801b031691830191909152908352909201910161145d565b61162e611a50565b600180546001600160a01b0383166001600160a01b0319909116811790915561165f6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000806116a2611394565b90506116b4816080015161040461076c565b91505090565b6000805b835181101561175f576000835182106116d85760006116f3565b8382815181106116ea576116ea612742565b60200260200101515b905061171c85838151811061170a5761170a612742565b60200260200101516040015182611f46565b85838151811061172e5761172e612742565b60200260200101516020015163ffffffff1661174a91906125a1565b6117549084612a09565b9250506001016116be565b5092915050565b61177260066000612042565b61177e60076000612063565b600854600480546001600160801b03600160801b808504821602600160401b8086046001600160401b039081169091026001600160801b0319909416951694909417919091171691909117905560095460055560005b600a5481101561186f57600a805460069190839081106117f6576117f6612742565b6000918252602080832084546001818101875595855291909320600292830290930180549190920290920191825582018054918301805463ffffffff19811663ffffffff909416938417825591546001600160801b03600160201b9182900416026001600160a01b0319909216909217179055016117d4565b5060005b600b5481101561194257600b8054600791908390811061189557611895612742565b600091825260208083208454600180820187559585529190932060029283029093018054929091029092019081559082018054918301805463ffffffff93841663ffffffff19821681178355835467ffffffffffffffff1990921617600160201b918290049094160292909217808355905477ffffffffffffffffffffffffffffffff000000000000000019909116600160401b918290046001600160801b031690910217905501611873565b5061194f60026000612084565b60005b6003548110156119d15760026003828154811061197157611971612742565b60009182526020808320600280840490910154855460018082018855968652929094209082040180546001600160801b036010938716840261010090810a8281021990931695881690940290930a90940490911690920217905501611952565b50600c805460ff191690556119e8600a6000612042565b6119f4600b6000612063565b611a0060036000612084565b600c805460ff60481b1916600160481b1790556005546004546040516001600160401b03909116907f782c7a09540733eeb30341e1e3458ab5a92af275b909dd940c795dc6a729472590600090a3565b6000546001600160a01b031633146104e35760405163118cdaa760e01b81523360048201526024016104d2565b611a85611f9d565b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600180546001600160a01b0319169055610e6a81611fc7565b8251815114611b1a578251815160405163e76077cb60e01b8152600481019290925260248201526044016104d2565b60005b8351811015611c3957818181518110611b3857611b38612742565b60200260200101516001600160801b0316600014158015611ba05750838181518110611b6657611b66612742565b6020026020010151604001516001600160801b0316828281518110611b8d57611b8d612742565b60200260200101516001600160801b0316105b15611c3157838181518110611bb757611bb7612742565b602002602001015160000151848281518110611bd557611bd5612742565b602002602001015160400151838381518110611bf357611bf3612742565b6020026020010151604051631c543e2160e11b81526004016104d2939291909283526001600160801b03918216602084015216604082015260600190565b600101611b1d565b50825160021180611c4b57508251600c105b15611c695760405163528ef80f60e11b815260040160405180910390fd5b8151600c1015611c8c57604051630558f5f160e51b815260040160405180910390fd5b836001600160801b0316600003611cb65760405163133d566f60e11b815260040160405180910390fd5b6000805b8451811015611d9957848181518110611cd557611cd5612742565b60200260200101516020015163ffffffff1682611cf29190612a09565b91506000611d01826001612a09565b90505b8551811015611d9057858181518110611d1f57611d1f612742565b602002602001015160000151868381518110611d3d57611d3d612742565b60200260200101516000015103611d8857858281518110611d6057611d60612742565b6020026020010151600001516040516345faf99160e01b81526004016104d291815260200190565b600101611d04565b50600101611cba565b506127108114611dbc576040516312118dab60e11b815260040160405180910390fd5b60005b8351811015611ebb57838181518110611dda57611dda612742565b6020026020010151606001516001600160801b031660001480611e205750838181518110611e0a57611e0a612742565b60200260200101516020015163ffffffff166000145b15611e3e5760405163133d566f60e11b815260040160405180910390fd5b6000611e4b826001612a09565b90505b8451811015611eb257848181518110611e6957611e69612742565b602002602001015160000151858381518110611e8757611e87612742565b60200260200101516000015103611eaa57848281518110611d6057611d60612742565b600101611e4e565b50600101611dbf565b505050505050565b600046308787878787604051602001611ee29796959493929190612a1c565b60405160208183030381529060405280519060200120905095945050505050565b611f0b612017565b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ab53390565b6000826001600160801b0316826001600160801b03161115611f8b576002611f7a6001600160801b03808516908616612a09565b611f8491906125cb565b9050611f97565b506001600160801b0382165b92915050565b600154600160a01b900460ff166104e357604051638dfc202b60e01b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600154600160a01b900460ff16156104e35760405163d93c066560e01b815260040160405180910390fd5b5080546000825560020290600052602060002090810190610e6a91906120a9565b5080546000825560020290600052602060002090810190610e6a91906120d4565b508054600082556001016002900490600052602060002090810190610e6a91906120fb565b5b808211156120d057600081556001810180546001600160a01b03191690556002016120aa565b5090565b5b808211156120d057600081556001810180546001600160c01b03191690556002016120d5565b5b808211156120d057600081556001016120fc565b600081518084526020840193506020830160005b82811015612188576121778683518051825263ffffffff602082015116602083015263ffffffff60408201511660408301526001600160801b036060820151166060830152506000608082019050919050565b955060209190910190600101612124565b5093949350505050565b600060c083016001600160401b0383511684526001600160401b0360208401511660208501526001600160801b03604084015116604085015260608301516060850152608083015160c0608086015281815180845260e087019150602083019350600092505b808310156122405783518051835260208082015163ffffffff16908401526040908101516001600160801b0316908301526060820191506020840193506001830192506121f8565b5060a0850151925085810360a087015261225a8184612110565b9695505050505050565b821515815260406020820152600061227f6040830184612192565b949350505050565b600081518084526020840193506020830160005b828110156121885781516001600160801b031686526020958601959091019060010161229b565b6020815260006122d56020830184612287565b9392505050565b6001600160801b0381168114610e6a57600080fd5b60008083601f84011261230357600080fd5b5081356001600160401b0381111561231a57600080fd5b60208301915083602060608302850101111561233557600080fd5b9250929050565b60008083601f84011261234e57600080fd5b5081356001600160401b0381111561236557600080fd5b6020830191508360208260071b850101111561233557600080fd5b60008083601f84011261239257600080fd5b5081356001600160401b038111156123a957600080fd5b6020830191508360208260051b850101111561233557600080fd5b60008060008060008060006080888a0312156123df57600080fd5b87356123ea816122dc565b965060208801356001600160401b0381111561240557600080fd5b6124118a828b016122f1565b90975095505060408801356001600160401b0381111561243057600080fd5b61243c8a828b0161233c565b90955093505060608801356001600160401b0381111561245b57600080fd5b6124678a828b01612380565b989b979a50959850939692959293505050565b60008060008060008060008060a0898b03121561249657600080fd5b88356124a1816122dc565b975060208901356001600160401b038111156124bc57600080fd5b6124c88b828c016122f1565b90985096505060408901356001600160401b038111156124e757600080fd5b6124f38b828c0161233c565b90965094505060608901356001600160401b0381111561251257600080fd5b61251e8b828c01612380565b90945092505060808901356001600160401b038116811461253e57600080fd5b809150509295985092959890939650565b6020815260006122d56020830184612192565b60006020828403121561257457600080fd5b81356001600160a01b03811681146122d557600080fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417611f9757611f9761258b565b81810381811115611f9757611f9761258b565b6000826125e857634e487b7160e01b600052601260045260246000fd5b500490565b63ffffffff81168114610e6a57600080fd5b6000606082840312801561261257600080fd5b50604051600090606081016001600160401b038111828210171561264457634e487b7160e01b83526041600452602483fd5b604052833581526020840135915061265b826125ed565b81602082015260408401359150612671826122dc565b60408101919091529392505050565b6000608082840312801561269357600080fd5b50604051600090608081016001600160401b03811182821017156126c557634e487b7160e01b83526041600452602483fd5b60405283358152602084013591506126dc826125ed565b816020820152604084013591506126f2826125ed565b81604082015260608401359150612708826122dc565b60608101919091529392505050565b60006001600160401b0382166001600160401b0381036127395761273961258b565b60010192915050565b634e487b7160e01b600052603260045260246000fd5b8135815560018101602083013561276e816125ed565b815463ffffffff191663ffffffff8216178255506040830135612790816122dc565b815473ffffffffffffffffffffffffffffffff00000000191660209190911b73ffffffffffffffffffffffffffffffff00000000161790555050565b813581556001810160208301356127e2816125ed565b815463ffffffff191663ffffffff8216178255506040830135612804816125ed565b81546060850135612814816122dc565b77ffffffffffffffffffffffffffffffff00000000000000008160401b1667ffffffff000000008460201b16600160201b600160c01b0319841617178455505050505050565b60006020828403121561286c57600080fd5b81356122d5816122dc565b81835260208301925060008160005b84811015612188578135865260208201356128a0816125ed565b63ffffffff16602087015260408201356128b9816122dc565b6001600160801b031660408701526060958601959190910190600101612886565b81835260208301925060008160005b8481101561218857813586526020820135612903816125ed565b63ffffffff166020870152604082013561291c816125ed565b63ffffffff1660408701526060820135612935816122dc565b6001600160801b0316606087015260809586019591909101906001016128e9565b6001600160801b0386168152606060208201526000612979606083018688612877565b828103604084015261298c8185876128da565b98975050505050505050565b6001600160401b038181168382160190811115611f9757611f9761258b565b6001600160401b03871681526001600160801b03861660208201526080604082015260006129e9608083018688612877565b82810360608401526129fc8185876128da565b9998505050505050505050565b80820180821115611f9757611f9761258b565b8781526001600160a01b0387166020808301919091526001600160401b03871660408301526001600160801b038616606083015260e0608083018190528551908301819052600091860190610100840190835b81811015612ab55783518051845260208082015163ffffffff16908501526040908101516001600160801b03169084015260608301602094909401939250600101612a6f565b505083810360a0850152612ac98187612110565b91505082810360c0840152612ade8185612287565b9a995050505050505050505056fea2646970667358221220974a45a40db856bdd71c23963352f03a72c85de76e4216065ab2293b94aebe8364736f6c634300081c003300000000000000000000000075c2a16767d2b86ed176d271d7cfc1acfe32635e0000000000000000000000000000000000000000000000000000000000015180000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000000000005636f6d6d6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000172617265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000005657069630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000146c6567656e646172790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000646d7974686963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000470310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000287031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000181703530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000079e7031303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000f6e000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","methodId":"0x60a06040","functionName":""}],"nextCursor":null}